summaryrefslogtreecommitdiff
path: root/lib/ac/time.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ac/time.h')
-rw-r--r--lib/ac/time.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/ac/time.h b/lib/ac/time.h
new file mode 100644
index 0000000..10d1136
--- /dev/null
+++ b/lib/ac/time.h
@@ -0,0 +1,10 @@
+#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