]> code.citadel.org Git - citadel.git/blobdiff - citadel/sendcommand.c
fix all the <time.h> vs. <sys/time.h> issues, hopefully
[citadel.git] / citadel / sendcommand.c
index 3a04baeaf8ef4dffe43cfa8a0933af117f98c4ec..8c7f63e5307970636a03d19cb7872891e4c9764c 100644 (file)
 #include <fcntl.h>
 #include <stdio.h>
 #include <ctype.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 <signal.h>
 #include <errno.h>
 #include <limits.h>