feat: définition de nouveaux types

This commit is contained in:
Nicolas Hordé 2007-04-02 14:01:17 +00:00
parent 659a895fda
commit fa3f9f8cab
1 changed files with 3 additions and 1 deletions

View File

@ -4,7 +4,9 @@
typedef unsigned char u8; typedef unsigned char u8;
typedef unsigned short u16; typedef unsigned short u16;
typedef unsigned int u32; typedef unsigned int u32;
typedef unsigned char uchar; typedef char s8;
typedef short s16;
typedef int s32;
typedef int bool; typedef int bool;
struct dtr { struct dtr {