From 82079f2f0da8d8f97c743a4732078744e6bde5c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20Hord=C3=A9?= Date: Mon, 2 Apr 2007 13:12:53 +0000 Subject: [PATCH] feat: ajout du pointeur NULL --- include/types.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/types.h b/include/types.h index 0d0af5b..630c32d 100644 --- a/include/types.h +++ b/include/types.h @@ -1,5 +1,5 @@ -#ifndef TYPE -#define TYPE +#ifndef I386_TYPE +#define I386_TYPE typedef unsigned char u8; typedef unsigned short u16; typedef unsigned int u32; @@ -7,5 +7,6 @@ typedef unsigned char uchar; typedef int bool; #define true 1; #define false 0; +#define NULL 0x0000; #endif