]> git.proxmox.com Git - mirror_spl-debian.git/blob - include/linux-types.h
More build fixes, I have the kernel module almost building and its
[mirror_spl-debian.git] / include / linux-types.h
1 #ifndef _LINUX_TYPES_H
2 #define _LINUX_TYPES_H
3
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7
8 typedef enum { B_FALSE=0, B_TRUE=1 } boolean_t;
9 typedef unsigned long uintptr_t;
10 typedef unsigned long intptr_t;
11 typedef unsigned long ulong_t;
12 typedef unsigned int uint_t;
13 typedef unsigned char uchar_t;
14 typedef unsigned long long u_longlong_t;
15 typedef unsigned long long u_offset_t;
16 typedef unsigned long long rlim64_t;
17 typedef long long longlong_t;
18 typedef long long offset_t;
19 typedef struct task_struct kthread_t;
20 typedef struct vmem { } vmem_t;
21 typedef short pri_t;
22
23 #ifdef __cplusplus
24 }
25 #endif
26
27 #endif /* _LINUX_TYPES_H */