]> granicus.if.org Git - curl/commitdiff
setup_once.h: HP-UX specific TRUE and FALSE definitions
authorYang Tse <yangsita@gmail.com>
Wed, 12 Dec 2012 15:13:16 +0000 (16:13 +0100)
committerYang Tse <yangsita@gmail.com>
Wed, 12 Dec 2012 15:14:24 +0000 (16:14 +0100)
Some HP-UX system headers require TRUE defined to 1 and FALSE to 0.

lib/setup_once.h

index eb14e5886e6afcde160856420aba9115dc815194..0bf49b72e325de67e74c4c774b467284e9ae8a83 100644 (file)
@@ -316,6 +316,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.