diff options
Diffstat (limited to 'tests/libtest/test.h')
-rw-r--r-- | tests/libtest/test.h | 8 |
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 */ |