summaryrefslogtreecommitdiff
path: root/lib/libc/time/localtime.c
blob: 530c0f2661e74bf4edf9eab9ea6e728b0e2dd670 (plain)
1
2
3
4
5
6
7
#include <time.h> // for localtime_r, localtime, time_t, tm

struct tm *localtime(const time_t *timer)
{
	static struct tm result;
	return localtime_r(timer, &result);
}