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