From bcbaeaf7d5f19bd253ae79d31c608d9a832b2f86 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 7 Nov 2003 07:02:35 +0000 Subject: define TRUE and FALSE here as some platforms don't have them otherwise --- src/setup.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/setup.h b/src/setup.h index 799b98c8b..bccec0cf1 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 -- cgit v1.2.3