xref: /aosp_15_r20/external/musl/src/time/localtime.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #include "time_impl.h"
2 
localtime(const time_t * t)3 struct tm *localtime(const time_t *t)
4 {
5 	static struct tm tm;
6 	return __localtime_r(t, &tm);
7 }
8