]> code.delx.au - gnu-emacs/blobdiff - lib-src/wakeup.c
(record_unwind_protect): Protoize parameter.
[gnu-emacs] / lib-src / wakeup.c
index 07c324d12101660cbc5e3c79e7478b5843f51e66..389519ba1f7f3fa79ffba2298b3497ca0f9cc532 100644 (file)
@@ -1,12 +1,26 @@
 /* Program to produce output at regular intervals.  */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
 #include <stdio.h>
-#include <time.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;