summaryrefslogtreecommitdiff
path: root/sys/src/ape/lib/9/ctime.c
blob: d8cdcef4cbbc472a15f611be4619db2b9c055610 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include "libc.h"

#undef gmtime

Tm*
_gmtime(time_t t)
{
	static Tm r;
	struct tm *p;

	p = gmtime(&t);
	r.sec = p->tm_sec;
	r.min = p->tm_min;
	r.hour = p->tm_hour;
	r.mday = p->tm_mday;
	r.mon = p->tm_mon;
	r.year = p->tm_year;
	r.wday = p->tm_wday;
	r.yday = p->tm_yday;
	strcpy(r.zone, "GMT");
	return &r;
}