]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
define TRUE and FALSE here as some platforms don't have them otherwise
authorDaniel Stenberg <daniel@haxx.se>
Fri, 7 Nov 2003 07:02:35 +0000 (07:02 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Fri, 7 Nov 2003 07:02:35 +0000 (07:02 +0000)
src/setup.h

index 799b98c8beea96c6e4c09297e99da3cbfa74a8cd..bccec0cf13fc9c8901d6f277548acc97d2cdc243 100644 (file)
 
 #include <stdio.h>
 
+#ifndef TRUE
+#define TRUE 1
+#endif
+#ifndef FALSE
+#define FALSE 0
+#endif
+
 #ifndef OS
 #define OS "unknown"
 #endif