]> code.citadel.org Git - citadel.git/blobdiff - citadel/citadel.c
fix all the <time.h> vs. <sys/time.h> issues, hopefully
[citadel.git] / citadel / citadel.c
index be9806d3acad626f0d3299beb965df496e0900b6..c25589047694e30ff86fb3b7730898034dc13339 100644 (file)
 #include <stdio.h>
 #include <ctype.h>
 #include <string.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 <limits.h>
 #include <sys/types.h>
 #include <sys/wait.h>