aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/libtest/test.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/libtest/test.h b/tests/libtest/test.h
index f11bfdd6c..8a6c02130 100644
--- a/tests/libtest/test.h
+++ b/tests/libtest/test.h
@@ -8,5 +8,13 @@
#include <stdio.h>
#include <string.h>
+#ifndef FALSE
+#define FALSE 0
+#endif
+
+#ifndef TRUE
+#define TRUE 1
+#endif
+
extern char *arg2; /* set by first.c to the argv[2] or NULL */