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.
19 lines
No EOL
370 B
C
Vendored
19 lines
No EOL
370 B
C
Vendored
/*
|
|
*/
|
|
#ifndef _SYS_CK_H_
|
|
#define _SYS_CK_H_
|
|
|
|
#ifdef _KERNEL
|
|
#include <ck_queue.h>
|
|
#include <ck_epoch.h>
|
|
#else
|
|
#include <sys/queue.h>
|
|
#define CK_STAILQ_HEAD STAILQ_HEAD
|
|
#define CK_STAILQ_ENTRY STAILQ_ENTRY
|
|
#define CK_LIST_HEAD LIST_HEAD
|
|
#define CK_LIST_ENTRY LIST_ENTRY
|
|
#define CK_SLIST_HEAD SLIST_HEAD
|
|
#define CK_SLIST_ENTRY SLIST_ENTRY
|
|
#endif
|
|
|
|
#endif /* !_SYS_CK_H_ */ |