aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorJim Blandy1993-07-06 16:07:30 +0000
committerJim Blandy1993-07-06 16:07:30 +0000
commit312752df3f7b7351e4f1cd79b0a77ef1a4305144 (patch)
tree9621eaebeeba0bb31bfd8dd5deb875d84d5b2aea /lib-src
parent15e4954b14b9b4a2e188cca694ee3fba1b6d2f0d (diff)
downloademacs-312752df3f7b7351e4f1cd79b0a77ef1a4305144.tar.gz
emacs-312752df3f7b7351e4f1cd79b0a77ef1a4305144.zip
* b2m.c: #include <sys/types.h>.
(ltoday): Declare this to be time_t.
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/b2m.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib-src/b2m.c b/lib-src/b2m.c
index d455de25f8e..a6a9022f462 100644
--- a/lib-src/b2m.c
+++ b/lib-src/b2m.c
@@ -17,6 +17,7 @@
17 17
18#include <stdio.h> 18#include <stdio.h>
19#include <time.h> 19#include <time.h>
20#include <sys/types.h>
20 21
21#include "../src/config.h" 22#include "../src/config.h"
22 23
@@ -33,7 +34,7 @@ extern char *strtok ();
33#define FALSE (0) 34#define FALSE (0)
34 35
35int header = FALSE, printing; 36int header = FALSE, printing;
36long ltoday; 37time_t ltoday;
37char from[256], labels[256], data[256], *p, *today; 38char from[256], labels[256], data[256], *p, *today;
38 39
39main (argc, argv) 40main (argc, argv)