summaryrefslogtreecommitdiff
path: root/libc/misc/time/localtime_r.c
blob: d084f2b1e05f97df2ddce17141e556dce41218ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

#include <time.h>

extern void __tm_conv();

struct tm *localtime_r(timep, tp)
__const time_t *timep;
struct tm *tp;
{
	struct timezone tz;
	time_t offt;

	gettimeofday((void *) 0, &tz);

	offt = -tz.tz_minuteswest * 60L;

	/* tmb.tm_isdst = ? */
	__tm_conv(tp, timep, offt);

	return tp;
}