From bcbaeaf7d5f19bd253ae79d31c608d9a832b2f86 Mon Sep 17 00:00:00 2001
From: Daniel Stenberg <daniel@haxx.se>
Date: Fri, 7 Nov 2003 07:02:35 +0000
Subject: [PATCH] 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 799b98c8be..bccec0cf13 100644
--- a/src/setup.h
+++ b/src/setup.h
@@ -57,6 +57,13 @@
 
 #include <stdio.h>
 
+#ifndef TRUE
+#define TRUE 1
+#endif
+#ifndef FALSE
+#define FALSE 0
+#endif
+
 #ifndef OS
 #define OS "unknown"
 #endif
-- 
GitLab