summaryrefslogtreecommitdiff
path: root/src/vmstime.h
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1993-03-14 22:49:14 +0000
committerJim Blandy <jimb@redhat.com>1993-03-14 22:49:14 +0000
commitd415c51747c29cc97df267af6c0ce7145feeb5eb (patch)
tree57504259470427d96330f01cbcdec78413a3201f /src/vmstime.h
parent05fa755b6f888472f958956ea3034ba24e1bdda8 (diff)
Initial revision
Diffstat (limited to 'src/vmstime.h')
-rw-r--r--src/vmstime.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/vmstime.h b/src/vmstime.h
new file mode 100644
index 00000000000..70d23e9d2fe
--- /dev/null
+++ b/src/vmstime.h
@@ -0,0 +1,15 @@
+#ifndef vmstime_h
+#define vmstime_h
+
+#include <time.h>
+#include <libdtdef.h>
+
+extern long timezone;
+extern int daylight;
+extern char *tzname[2];
+
+void sys_tzset();
+struct tm *sys_localtime(time_t *clock);
+struct tm *sys_gmtime(time_t *clock);
+
+#endif /* vmstime_h */