1/* types.h
2 * very early types definition
3 */
4
5#ifndef _TYPES_
6#define _TYPES_
7
8typedef unsigned char  __u8;
9typedef unsigned short __u16;
10typedef unsigned int   __u32;
11typedef unsigned long long __u64;
12
13typedef __u8 u8;
14typedef __u16 u16;
15typedef __u32 u32;
16typedef __u64 u64;
17
18typedef unsigned int size_t;
19
20typedef volatile unsigned short vu16;
21typedef volatile unsigned int	vu32;
22
23#endif
24