changeset 4572:beb5acbcd482

(TRUE, FALSE): Don't define if already defined.
author Richard M. Stallman <rms@gnu.org>
date Wed, 11 Aug 1993 20:55:04 +0000
parents 25bee4fe64aa
children 5a2c0c38a0a1
files lib-src/b2m.c
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/lib-src/b2m.c	Wed Aug 11 20:48:04 1993 +0000
+++ b/lib-src/b2m.c	Wed Aug 11 20:55:04 1993 +0000
@@ -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;