(BOOL): Changed from char to unsigned char.

From-SVN: r8230
This commit is contained in:
Kresten Krab Thorup 1994-10-06 16:24:03 +00:00
parent b962cd0b23
commit ffa8bd9bcb
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ extern "C" {
/* /*
** Definition of the boolean type. ** Definition of the boolean type.
*/ */
typedef char BOOL; typedef unsigned char BOOL;
#define YES (BOOL)1 #define YES (BOOL)1
#define NO (BOOL)0 #define NO (BOOL)0