]> rtime.felk.cvut.cz Git - lincan.git/blob - lincan/include/unican_types.h
3e330b889e1edcff5644ed39297cafb1390663c5
[lincan.git] / lincan / include / unican_types.h
1 #ifndef _UNICAN_TYPES_H
2 #define _UNICAN_TYPES_H
3
4 #include <linux/types.h>
5
6 #ifndef U8
7 #define U8  __u8
8 #endif
9 #ifndef U16
10 #define U16 __u16
11 #endif
12 #ifndef U32
13 #define U32 __u32
14 #endif
15
16 #define BOOLEAN1 __u8
17
18 #ifndef FALSE
19 #define FALSE 0
20 #endif
21 #ifndef TRUE
22 #define TRUE  1
23 #endif
24
25 #endif /*_UNICAN_TYPES_H*/