1#include "time_impl.h"
2
3struct tm *__localtime_r(const time_t *restrict, struct tm *restrict);
4
5struct tm *localtime(const time_t *t)
6{
7	static struct tm tm;
8	return __localtime_r(t, &tm);
9}
10