From 0f5618619c3f026bc88979f2f0e34318e3afd2ba Mon Sep 17 00:00:00 2001 From: dwarning Date: Sun, 6 Apr 2008 19:33:38 +0000 Subject: [PATCH] removing BOOLEAN definition (checked under mingw) --- src/include/bool.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/include/bool.h b/src/include/bool.h index 804985f40..80e7030a9 100644 --- a/src/include/bool.h +++ b/src/include/bool.h @@ -3,11 +3,10 @@ typedef unsigned char bool; -#define BOOLEAN int -#define TRUE 1 +#define TRUE 1 #define FALSE 0 -#define NO 0 -#define YES 1 +#define NO 0 +#define YES 1 #endif