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