From: Daniel Stenberg Date: Thu, 6 Nov 2003 13:07:54 +0000 (+0000) Subject: Define TRUE and FALSE unless already present. I've moved away those X-Git-Tag: curl-7_11_0~271 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=527850928d349269029a38bace3aba9cb925d31b;p=thirdparty%2Fcurl.git Define TRUE and FALSE unless already present. I've moved away those definitions from the global curl header and thus this needs to do it themselves. --- 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 */