zig/lib/libc/include/generic-freebsd/sys/splash.h
Alex Rønne Petersen 6e64bc845f
libc: Add FreeBSD system and libc headers from 14.2.0.
osreldate.h and sys/param.h were manually adjusted to not __FreeBSD_version
since it will be defined by the compiler.
2025-05-10 12:19:26 +02:00

19 lines
No EOL
296 B
C
Vendored

/*-
* SPDX-License-Identifier: BSD-2-Clause
*
* Copyright (c) 2024 Beckhoff Automation GmbH & Co. KG
*
*/
#ifndef _SYS_SPLASH_H_
#define _SYS_SPLASH_H_
#include <sys/types.h>
struct splash_info {
uint32_t si_width;
uint32_t si_height;
uint32_t si_depth;
};
#endif /* _SYS_SPLASH_H_ */