mirror of
https://github.com/ziglang/zig.git
synced 2025-12-07 06:43:07 +00:00
osreldate.h and sys/param.h were manually adjusted to not __FreeBSD_version since it will be defined by the compiler.
10 lines
214 B
C
Vendored
10 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
|