cos2000v2/include/types.h

12 lines
195 B
C
Raw Normal View History

2007-04-02 14:56:10 +02:00
#ifndef TYPE
#define TYPE
typedef unsigned char u8;
typedef unsigned short u16;
typedef unsigned int u32;
typedef unsigned char uchar;
typedef int bool;
#define true 1;
#define false 0;
#endif