cos2000v2/include/types.h

13 lines
226 B
C
Raw Normal View History

2007-04-02 15:12:53 +02:00
#ifndef I386_TYPE
#define I386_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;
2007-04-02 15:12:53 +02:00
#define NULL 0x0000;
#endif