setup_once.h: HP-UX specific TRUE and FALSE definitions
authorYang Tse <yangsita@gmail.com>
Wed, 12 Dec 2012 15:39:07 +0000 (16:39 +0100)
committerYang Tse <yangsita@gmail.com>
Wed, 12 Dec 2012 15:39:07 +0000 (16:39 +0100)
Some HP-UX system headers require TRUE defined to 1 and FALSE to 0.

setup_once.h

index fc630ef27a465fdde680f36426f12e356a30ecc4..bb261e7a88128968def4bc66b1f8058a3d4eaa41 100644 (file)
@@ -299,6 +299,18 @@ struct timeval {
 #endif
 
 
+/*
+ * Some HP-UX system headers require TRUE defined to 1 and FALSE to 0.
+ */
+
+#if defined(__hpux)
+#undef TRUE
+#define TRUE 1
+#undef FALSE
+#define FALSE 0
+#endif
+
+
 /*
  * Macro WHILE_FALSE may be used to build single-iteration do-while loops,
  * avoiding compiler warnings. Mostly intended for other macro definitions.