aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Blandy1993-06-08 07:15:01 +0000
committerJim Blandy1993-06-08 07:15:01 +0000
commit11e5be7d857cc241d9471f7f97abf28d96f7e2cc (patch)
tree236ad83be1fd903ab95b6d9a1f255d1979d86911
parent8f2d5456ade3f3f124983e3408040af6fcf7e185 (diff)
downloademacs-11e5be7d857cc241d9471f7f97abf28d96f7e2cc.tar.gz
emacs-11e5be7d857cc241d9471f7f97abf28d96f7e2cc.zip
* wakeup.c: Include sys/types.h, too; I think that's where time_t
comes from, not sys/time.h.
-rw-r--r--lib-src/wakeup.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib-src/wakeup.c b/lib-src/wakeup.c
index d2035e3a523..07c324d1210 100644
--- a/lib-src/wakeup.c
+++ b/lib-src/wakeup.c
@@ -2,6 +2,7 @@
2 2
3#include <stdio.h> 3#include <stdio.h>
4#include <time.h> 4#include <time.h>
5#include <sys/types.h>
5#include <sys/time.h> 6#include <sys/time.h>
6 7
7struct tm *localtime (); 8struct tm *localtime ();