]> code.citadel.org Git - citadel.git/blobdiff - citadel/msgbase.c
fix all the <time.h> vs. <sys/time.h> issues, hopefully
[citadel.git] / citadel / msgbase.c
index 9123604de58343153735893f37f783499e54e164..12afea81e35edda7671b9ca2ab8e9caf8624833a 100644 (file)
 #include <unistd.h>
 #include <stdio.h>
 #include <fcntl.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 <syslog.h>