Implemented debug support.
[libfirm] / ir / common / bool.h
index 80cd5e7..6939b66 100644 (file)
@@ -7,13 +7,20 @@
 **
 */
 
+/* $Id$ */
+
 # ifndef _BOOL_H_
 # define _BOOL_H_
 
-# ifndef __CPLUSPLUS
+# ifndef __cplusplus
 
 typedef unsigned char bool;
 
-# endif
+# endif /* __cplusplus */
+
+# ifndef TRUE
+#  define TRUE  1
+#  define FALSE 0
+# endif /* ndef TRUE */
 
 # endif /* _BOOL_H_ */