Resync
[CMakeLuaTailorHgBridge.git] / CMakeLua / Utilities / cmxmlrpc / bool.h
blob8bf54f34f764ed5b005d197aa56d0953c860644a
1 #ifndef BOOL_H_INCLUDED
2 #define BOOL_H_INCLUDED
4 #ifndef TRUE
5 #define TRUE (1)
6 #endif
7 #ifndef FALSE
8 #define FALSE (0)
9 #endif
11 #ifndef __cplusplus
12 #ifndef HAVE_BOOL
13 #define HAVE_BOOL
14 typedef int bool;
15 #endif
16 #endif
18 #endif