summaryrefslogtreecommitdiff
path: root/src/time/localtime_r.c
blob: 2bf10378830f18d1a222b8104e1c134e712872a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include <time.h>

#include "__time.h"

struct tm *localtime_r(const time_t *t, struct tm *result)
{
	__tzset();
	__time_to_tm(*t - __timezone, result);
	result->tm_isdst = -1;
	return __dst_adjust(result);
}