Blame | Last modification | View Log | RSS feed
/****************************************************************************
*
* Type definitions
*
***/
typedef signed char i8;
typedef signed char int8;
typedef signed short i16;
typedef signed short int16;
typedef signed int i32;
typedef signed int int32;
typedef unsigned char u8;
typedef unsigned char uchar;
typedef unsigned char uint8;
typedef unsigned short u16;
typedef unsigned short ushort;
typedef unsigned short uint16;
typedef unsigned int u32;
typedef unsigned int uint;
typedef unsigned int uint32;
typedef unsigned long ulong;