blob: 30f96b64c258d5e8d97374381b82de4847f26c4c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* Define if kernel is 64 bit and userland is 32 bit */
#undef KERNEL64_USER32
@BOTTOM@
#include <sys/types.h>
#ifdef KERNEL64_USER32
typedef u_int64_t kptr_t;
#else
typedef void *kptr_t;
#endif
|