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