diff options
-rw-r--r-- | lib-src/b2m.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib-src/b2m.c b/lib-src/b2m.c index a6a9022f462..8fffbf0fd25 100644 --- a/lib-src/b2m.c +++ b/lib-src/b2m.c @@ -30,8 +30,12 @@ /* BSD's strings.h does not declare the type of strtok. */ extern char *strtok (); +#ifndef TRUE #define TRUE (1) +#endif +#ifndef FALSE #define FALSE (0) +#endif int header = FALSE, printing; time_t ltoday; |