mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-06 06:20:55 -08:00
* b2m.c: #include <sys/types.h>.
(ltoday): Declare this to be time_t.
This commit is contained in:
parent
15e4954b14
commit
312752df3f
1 changed files with 2 additions and 1 deletions
|
|
@ -17,6 +17,7 @@
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
|
#include <sys/types.h>
|
||||||
|
|
||||||
#include "../src/config.h"
|
#include "../src/config.h"
|
||||||
|
|
||||||
|
|
@ -33,7 +34,7 @@ extern char *strtok ();
|
||||||
#define FALSE (0)
|
#define FALSE (0)
|
||||||
|
|
||||||
int header = FALSE, printing;
|
int header = FALSE, printing;
|
||||||
long ltoday;
|
time_t ltoday;
|
||||||
char from[256], labels[256], data[256], *p, *today;
|
char from[256], labels[256], data[256], *p, *today;
|
||||||
|
|
||||||
main (argc, argv)
|
main (argc, argv)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue