]> code.citadel.org Git - citadel.git/blobdiff - citadel/control.c
fix all the <time.h> vs. <sys/time.h> issues, hopefully
[citadel.git] / citadel / control.c
index dd056611ba1c24064a0c991a4156db6cb6c26375..5a154b14f2c9f3d5a94f7126df9a6475312967a2 100644 (file)
 #include <stdio.h>
 #include <fcntl.h>
 #include <signal.h>
-#include <time.h>
+
+#if TIME_WITH_SYS_TIME
+# include <sys/time.h>
+# include <time.h>
+#else
+# if HAVE_SYS_TIME_H
+#  include <sys/time.h>
+# else
+#  include <time.h>
+# endif
+#endif
+
 #include <ctype.h>
 #include <string.h>
 #include <errno.h>