kbd: use a better get_key method
[thunix.git] / include / types.h
blob5b1005bb244b45e55a811d190f75781ac94faea4
1 #ifndef TYPES_H
2 #define TYPES_H
4 typedef int size_t;
6 #ifndef NULL
7 #define NULL ( (void*) 0)
8 #endif
10 typedef unsigned int __u32;
11 typedef int __s32;
12 typedef unsigned short __u16;
13 typedef short __s16;
14 typedef unsigned char __u8;
17 #endif /* _TYPES_H */