/* types.h
 * very early types definition
 */

#ifndef _TYPES_
#define _TYPES_

typedef unsigned char  __u8;
typedef unsigned short __u16;
typedef unsigned int   __u32;
typedef unsigned long long __u64;

typedef __u8 u8;
typedef __u16 u16;
typedef __u32 u32;
typedef __u64 u64;

typedef unsigned int size_t;

typedef volatile unsigned short vu16;
typedef volatile unsigned int	vu32;

#endif