aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src/b2m.c
diff options
context:
space:
mode:
authorRichard M. Stallman1993-08-11 20:55:04 +0000
committerRichard M. Stallman1993-08-11 20:55:04 +0000
commitcbc61077f3af35a724b796e4e0a6cabbbc6042bd (patch)
tree71f60da982640fed196e48a09cc7621f192b4330 /lib-src/b2m.c
parentf8f5a0575b31f5518d30f987323a719b2eb96b18 (diff)
downloademacs-cbc61077f3af35a724b796e4e0a6cabbbc6042bd.tar.gz
emacs-cbc61077f3af35a724b796e4e0a6cabbbc6042bd.zip
(TRUE, FALSE): Don't define if already defined.
Diffstat (limited to 'lib-src/b2m.c')
-rw-r--r--lib-src/b2m.c4
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 @@
30/* BSD's strings.h does not declare the type of strtok. */ 30/* BSD's strings.h does not declare the type of strtok. */
31extern char *strtok (); 31extern char *strtok ();
32 32
33#ifndef TRUE
33#define TRUE (1) 34#define TRUE (1)
35#endif
36#ifndef FALSE
34#define FALSE (0) 37#define FALSE (0)
38#endif
35 39
36int header = FALSE, printing; 40int header = FALSE, printing;
37time_t ltoday; 41time_t ltoday;