summaryrefslogtreecommitdiff
path: root/libc/misc/time/gmtime.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/misc/time/gmtime.c')
-rw-r--r--libc/misc/time/gmtime.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/libc/misc/time/gmtime.c b/libc/misc/time/gmtime.c
new file mode 100644
index 000000000..69d539392
--- /dev/null
+++ b/libc/misc/time/gmtime.c
@@ -0,0 +1,16 @@
+
+#include <time.h>
+
+extern void __tm_conv();
+
+struct tm *
+gmtime(timep)
+__const time_t * timep;
+{
+ static struct tm tmb;
+
+ __tm_conv(&tmb, timep, 0L);
+
+ return &tmb;
+}
+