fix all the <time.h> vs. <sys/time.h> issues, hopefully
[citadel.git] / citadel / serv_chat.c
index f45c3f217e875ffc2ee17b7cb41abe4dafdbdd3b..c59c62d94b1399f14cb30d9ed6960c4ddbb5d166 100644 (file)
 #include <pwd.h>
 #include <errno.h>
 #include <sys/types.h>
-#include <sys/time.h>
-#ifdef TIME_WITH_SYS_TIME
-#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 <sys/wait.h>
 #include <string.h>
 #include <limits.h>