Merge from current S48: avoid duplicate definition of TRUE and FALSE.
This commit is contained in:
parent
6158e7a964
commit
dc19f744d3
|
@ -1,4 +1,10 @@
|
|||
|
||||
#ifndef TRUE
|
||||
#define TRUE (0 == 0)
|
||||
#endif
|
||||
|
||||
#ifndef FALSE
|
||||
#define FALSE (0 == 1)
|
||||
#endif
|
||||
|
||||
#define bool char /* boolean type */
|
||||
|
|
Loading…
Reference in New Issue