mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-07 06:14:33 +00:00
osreldate.h and sys/param.h were manually adjusted to not __FreeBSD_version since it will be defined by the compiler.
19 lines
No EOL
296 B
C
Vendored
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_ */ |