summaryrefslogtreecommitdiff
path: root/libc/misc/time/__time_static.c
blob: d921ced90970ced3b43913e31c2c01a60f44914c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

#include <time.h>

/* These globals are exported by the C library */
char *__tzname[2] = { (char *) "GMT", (char *) "GMT" };
int __daylight = 0;
long int __timezone = 0L;
/* Grumble */
weak_alias (__tzname, tzname);
weak_alias (__daylight, daylight);
weak_alias (__timezone, timezone);


/* static data for gmtime() and localtime() */
struct tm __tmb;