diff options
-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 |