summaryrefslogtreecommitdiff
path: root/src/time/ctime_r.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/time/ctime_r.c')
-rw-r--r--src/time/ctime_r.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/time/ctime_r.c b/src/time/ctime_r.c
new file mode 100644
index 00000000..d2260a16
--- /dev/null
+++ b/src/time/ctime_r.c
@@ -0,0 +1,8 @@
+#include <time.h>
+
+char *ctime_r(const time_t *t, char *buf)
+{
+ struct tm tm;
+ localtime_r(t, &tm);
+ return asctime_r(&tm, buf);
+}