]> code.delx.au - gnu-emacs/blobdiff - lib-src/wakeup.c
(x-create-frame-with-faces): If an ASCII font is
[gnu-emacs] / lib-src / wakeup.c
index d2035e3a523649dd3a9a0d493f8b374c6d925c23..389519ba1f7f3fa79ffba2298b3497ca0f9cc532 100644 (file)
@@ -1,11 +1,26 @@
 /* Program to produce output at regular intervals.  */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
 #include <stdio.h>
+#include <sys/types.h>
+
+#ifdef TIME_WITH_SYS_TIME
+#include <sys/time.h>
 #include <time.h>
+#else
+#ifdef HAVE_SYS_TIME_H
 #include <sys/time.h>
+#else
+#include <time.h>
+#endif
+#endif
 
 struct tm *localtime ();
 
+void
 main (argc, argv)
      int argc;
      char **argv;