the big time handling overhaul
[musl] / src / time / localtime.c
1 #include "time_impl.h"
2
3 struct tm *__localtime_r(const time_t *restrict, struct tm *restrict);
4
5 struct tm *localtime(const time_t *t)
6 {
7         static struct tm tm;
8         return __localtime_r(t, &tm);
9 }