]> code.citadel.org Git - citadel.git/blobdiff - citadel/database.c
fix all the <time.h> vs. <sys/time.h> issues, hopefully
[citadel.git] / citadel / database.c
index d562e07bcdfc7179eb7220262f54eb9d59b2e05d..dc247df978a194ad2c98af31403a0e7013d942ce 100644 (file)
 #include <stdlib.h>
 #include <unistd.h>
 #include <stdio.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>
@@ -353,5 +364,5 @@ void cdb_allocate_tsd(void) {
 void cdb_free_tsd(void) {
 }
 
-void cdb_release_handles(void) {
+void cdb_check_handles(void) {
 }