feat: ajout du pointeur NULL

This commit is contained in:
Nicolas Hordé 2007-04-02 13:12:53 +00:00
parent 56609d8e55
commit 82079f2f0d
1 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,5 @@
#ifndef TYPE #ifndef I386_TYPE
#define TYPE #define I386_TYPE
typedef unsigned char u8; typedef unsigned char u8;
typedef unsigned short u16; typedef unsigned short u16;
typedef unsigned int u32; typedef unsigned int u32;
@ -7,5 +7,6 @@ typedef unsigned char uchar;
typedef int bool; typedef int bool;
#define true 1; #define true 1;
#define false 0; #define false 0;
#define NULL 0x0000;
#endif #endif