mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 22:04:21 +00:00
osreldate.h and sys/param.h were manually adjusted to not __FreeBSD_version since it will be defined by the compiler.
9 lines
214 B
C
Vendored
9 lines
214 B
C
Vendored
/*-
|
|
* Copyright (c) 1992-2023 The FreeBSD Project.
|
|
*
|
|
*/
|
|
#ifdef _KERNEL
|
|
#error "<osreldate.h> cannot be used in the kernel, use <sys/param.h>"
|
|
#else
|
|
/* zig patch: the compiler defines __FreeBSD_version */
|
|
#endif
|