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