diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-11-07 07:02:35 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-11-07 07:02:35 +0000 |
commit | bcbaeaf7d5f19bd253ae79d31c608d9a832b2f86 (patch) | |
tree | 54f3c2bd26e3c9e02a58fe8a19373ad908f6142f | |
parent | 41be41358e5f81837dcbf4a61c4f246d87d60476 (diff) |
define TRUE and FALSE here as some platforms don't have them otherwise
-rw-r--r-- | src/setup.h | 7 |
1 files changed, 7 insertions, 0 deletions
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 <stdio.h> +#ifndef TRUE +#define TRUE 1 +#endif +#ifndef FALSE +#define FALSE 0 +#endif + #ifndef OS #define OS "unknown" #endif |