]> code.delx.au - gnu-emacs/blobdiff - lib-src/wakeup.c
Set category of kinsoku-bol and kinsoku-eol for
[gnu-emacs] / lib-src / wakeup.c
index eb3dd72c95c48b5196fc8f41a69220391967a27d..389519ba1f7f3fa79ffba2298b3497ca0f9cc532 100644 (file)
@@ -1,16 +1,32 @@
 /* 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;
 {
   int period = 60;
-  long when;
+  time_t when;
   struct tm *tp;
 
   if (argc > 1)