From dc19f744d3a50498b87b7f9aab8f3c0229909e0c Mon Sep 17 00:00:00 2001 From: mainzelm Date: Thu, 7 Feb 2002 13:09:08 +0000 Subject: [PATCH] Merge from current S48: avoid duplicate definition of TRUE and FALSE. --- c/c-mods.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/c/c-mods.h b/c/c-mods.h index 84130cb..7632f4d 100644 --- a/c/c-mods.h +++ b/c/c-mods.h @@ -1,4 +1,10 @@ +#ifndef TRUE #define TRUE (0 == 0) +#endif + +#ifndef FALSE #define FALSE (0 == 1) +#endif + #define bool char /* boolean type */