summaryrefslogtreecommitdiff
path: root/libc/misc/time/asctime.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/misc/time/asctime.c')
-rw-r--r--libc/misc/time/asctime.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/libc/misc/time/asctime.c b/libc/misc/time/asctime.c
new file mode 100644
index 000000000..08673cbcc
--- /dev/null
+++ b/libc/misc/time/asctime.c
@@ -0,0 +1,15 @@
+
+#include <time.h>
+
+extern void __asctime();
+
+char *
+asctime(timeptr)
+__const struct tm * timeptr;
+{
+ static char timebuf[26];
+
+ if( timeptr == 0 ) return 0;
+ __asctime(timebuf, timeptr);
+ return timebuf;
+}