summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/cli_val.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/cli_val.h b/src/cli_val.h
index a753c92..e8fbe83 100644
--- a/src/cli_val.h
+++ b/src/cli_val.h
@@ -4,8 +4,12 @@
#define BITWISE 0 /* no partial commit */
#define boolean int
-#define TRUE 1
+#ifndef FALSE
#define FALSE 0
+#endif
+#ifndef TRUE
+#define TRUE (!FALSE)
+#endif
/* allocation unit for vals in valstruct */
#define MULTI_ALLOC 5 /* we have room if cnt%MULTI_ALLOC != 0 */