summaryrefslogtreecommitdiff
path: root/src/time/__time.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/time/__time.h')
-rw-r--r--src/time/__time.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/time/__time.h b/src/time/__time.h
new file mode 100644
index 00000000..967e5180
--- /dev/null
+++ b/src/time/__time.h
@@ -0,0 +1,9 @@
+time_t __tm_to_time(struct tm *);
+struct tm *__time_to_tm(time_t, struct tm *);
+void __tzset(void);
+struct tm *__dst_adjust(struct tm *tm);
+
+extern long __timezone;
+extern int __daylight;
+extern int __dst_offset;
+extern char *__tzname[2];