]> git.proxmox.com Git - wasi-libc.git/blob - libc-top-half/musl/src/time/asctime.c
WASI libc prototype implementation.
[wasi-libc.git] / libc-top-half / musl / src / time / asctime.c
1 #include <time.h>
2
3 char *asctime(const struct tm *tm)
4 {
5 static char buf[26];
6 return __asctime_r(tm, buf);
7 }