summaryrefslogtreecommitdiff
path: root/libc/misc/time/ctime_r.c
blob: b608098aef0f6ac82da7fbacf6aa82d2734a448c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

#include <time.h>
#include <sys/time.h>

extern void __tm_conv();
extern void __asctime();

char *ctime_r(timep, buf)
__const time_t *timep;
char *buf;
{
	struct tm tmb;
	struct timezone tz;
	time_t offt;

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

	offt = -tz.tz_minuteswest * 60L;

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

	__asctime(buf, &tmb);

	return buf;
}