aboutsummaryrefslogtreecommitdiff
path: root/src/time/localtime.c
blob: f0db1f3c77220453a4ac5007ab33c0c60231082b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "time_impl.h"

struct tm *localtime(const time_t *t)
{
	static struct tm tm;
	return __localtime_r(t, &tm);
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif