summaryrefslogtreecommitdiffstats
path: root/libc-top-half/musl/src/time/ctime.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc-top-half/musl/src/time/ctime.c')
-rw-r--r--libc-top-half/musl/src/time/ctime.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/time/ctime.c b/libc-top-half/musl/src/time/ctime.c
new file mode 100644
index 0000000..3602931
--- /dev/null
+++ b/libc-top-half/musl/src/time/ctime.c
@@ -0,0 +1,8 @@
+#include <time.h>
+
+char *ctime(const time_t *t)
+{
+ struct tm *tm = localtime(t);
+ if (!tm) return 0;
+ return asctime(tm);
+}