diff --git a/tests/libtest/test.h b/tests/libtest/test.h index f11bfdd6c85b5a1eb4113da5eb696f718f3b20c7..8a6c02130cf34a768a7cfc16b1968ecb3d69d6aa 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 */