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    static struct tm tm;
7    return __localtime_r(t, &tm);
8}
9