From: Daniel Stenberg Date: Fri, 7 Nov 2003 07:02:35 +0000 (+0000) Subject: define TRUE and FALSE here as some platforms don't have them otherwise X-Git-Tag: curl-7_11_0~264 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bcbaeaf7d5f19bd253ae79d31c608d9a832b2f86;p=thirdparty%2Fcurl.git define TRUE and FALSE here as some platforms don't have them otherwise --- diff --git a/src/setup.h b/src/setup.h index 799b98c8be..bccec0cf13 100644 --- a/src/setup.h +++ b/src/setup.h @@ -57,6 +57,13 @@ #include +#ifndef TRUE +#define TRUE 1 +#endif +#ifndef FALSE +#define FALSE 0 +#endif + #ifndef OS #define OS "unknown" #endif