diff --git a/tests/libtest/test.h b/tests/libtest/test.h index f11bfdd6c8..8a6c02130c 100644 --- a/tests/libtest/test.h +++ b/tests/libtest/test.h @@ -8,5 +8,13 @@ #include #include +#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 */