diff options
author | Nigel Metheringham <nigel@exim.org> | 2009-10-19 12:29:31 +0000 |
---|---|---|
committer | Nigel Metheringham <nigel@exim.org> | 2009-10-19 12:29:31 +0000 |
commit | d1406d480202b226035e239f74c0dd3c9ea7c3bd (patch) | |
tree | 82a1416ce6919dbf48d64c1cf06e0021de6cecc6 | |
parent | 30af5abec05d51c287176308ccf18b58ad1fb451 (diff) |
Tweak mytypes.h to not redefine TRUE/FALSE
-rw-r--r-- | src/src/mytypes.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/src/mytypes.h b/src/src/mytypes.h index d9912c4ff..bee6543c4 100644 --- a/src/src/mytypes.h +++ b/src/src/mytypes.h @@ -1,4 +1,4 @@ -/* $Cambridge: exim/src/src/mytypes.h,v 1.5 2008/09/29 11:41:07 nm4 Exp $ */ +/* $Cambridge: exim/src/src/mytypes.h,v 1.6 2009/10/19 12:29:31 nm4 Exp $ */ /************************************************* * Exim - an Internet mail transport agent * @@ -15,10 +15,17 @@ local_scan.h includes it and exim.h includes them both (to get this earlier). */ #ifndef MYTYPES_H #define MYTYPES_H - +#ifndef FALSE #define FALSE 0 +#endif + +#ifndef TRUE #define TRUE 1 +#endif + +#ifndef TRUE_UNSET #define TRUE_UNSET 2 +#endif /* If gcc is being used to compile Exim, we can use its facility for checking |