removing BOOLEAN definition (checked under mingw)

This commit is contained in:
dwarning 2008-04-06 19:33:38 +00:00
parent 514a3816aa
commit 0f5618619c
1 changed files with 3 additions and 4 deletions

View File

@ -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