Merge from current S48: avoid duplicate definition of TRUE and FALSE.

This commit is contained in:
mainzelm 2002-02-07 13:09:08 +00:00
parent 6158e7a964
commit dc19f744d3
1 changed files with 6 additions and 0 deletions

View File

@ -1,4 +1,10 @@
#ifndef TRUE
#define TRUE (0 == 0)
#endif
#ifndef FALSE
#define FALSE (0 == 1)
#endif
#define bool char /* boolean type */