]> git.proxmox.com Git - wasi-libc.git/blob - libc-top-half/musl/src/time/localtime.c
WASI libc prototype implementation.
[wasi-libc.git] / libc-top-half / musl / src / time / localtime.c
1 #include "time_impl.h"
2
3 struct tm *localtime(const time_t *t)
4 {
5 static struct tm tm;
6 return __localtime_r(t, &tm);
7 }