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