]> granicus.if.org Git - graphviz/commitdiff
Remove last vestiges (I hope) of bool, true and false.
authorerg <devnull@localhost>
Fri, 27 Jun 2008 17:53:03 +0000 (17:53 +0000)
committererg <devnull@localhost>
Fri, 27 Jun 2008 17:53:03 +0000 (17:53 +0000)
lib/common/logic.h

index 291758e5f550426531933eb989d60f9eb0c1c8b6..35bd39d72bd87e34d831d1906b7c3acc2bd6d5ff 100644 (file)
@@ -39,10 +39,10 @@ typedef unsigned char bool;
 #endif
 
 #ifndef FALSE
-#define        FALSE false
+#define        FALSE (0)
 #endif
 #ifndef TRUE
-#define TRUE true
+#define TRUE (!FALSE)
 #endif
 
 #ifndef NOTUSED