comparison lib-src/b2m.c @ 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 b43e59cb1d54
children 1fc792473491
comparison
equal deleted inserted replaced
4571:25bee4fe64aa 4572:beb5acbcd482
28 #endif 28 #endif
29 29
30 /* BSD's strings.h does not declare the type of strtok. */ 30 /* BSD's strings.h does not declare the type of strtok. */
31 extern char *strtok (); 31 extern 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
36 int header = FALSE, printing; 40 int header = FALSE, printing;
37 time_t ltoday; 41 time_t ltoday;
38 char from[256], labels[256], data[256], *p, *today; 42 char from[256], labels[256], data[256], *p, *today;
39 43