00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #ifndef OP_TYPES_H
00013 #define OP_TYPES_H
00014
00015 #ifndef __KERNEL__
00016
00017 #include <sys/types.h>
00018
00019
00020 typedef unsigned char u8;
00021 typedef unsigned short u16;
00022 typedef unsigned int u32;
00023 typedef unsigned long long u64;
00024 typedef int fd_t;
00025
00026
00027
00028 typedef unsigned long long vma_t;
00029
00030
00031 typedef u64 count_type;
00032
00033 #else
00034 #include <linux/types.h>
00035 #endif
00036
00037 #endif