]> git.eshelyaron.com Git - emacs.git/commitdiff
* b2m.c: #include <sys/types.h>.
authorJim Blandy <jimb@redhat.com>
Tue, 6 Jul 1993 16:07:30 +0000 (16:07 +0000)
committerJim Blandy <jimb@redhat.com>
Tue, 6 Jul 1993 16:07:30 +0000 (16:07 +0000)
(ltoday): Declare this to be time_t.

lib-src/b2m.c

index d455de25f8e9fe38ae62b01d1599b6e730e0ffcb..a6a9022f46287d90870276572a0c465ee99f4560 100644 (file)
@@ -17,6 +17,7 @@
 
 #include <stdio.h>
 #include <time.h>
+#include <sys/types.h>
 
 #include "../src/config.h"
 
@@ -33,7 +34,7 @@ extern char *strtok ();
 #define FALSE (0)
 
 int header = FALSE, printing;
-long ltoday;
+time_t ltoday;
 char from[256], labels[256], data[256], *p, *today;
 
 main (argc, argv)