mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-15 19:09:58 +08:00
b397593c94
* libc/time/tzvars.c: New file. * libc/time/tzset_r.c: Moved globals into tzvars.c so other time functions needn't link in __tzset_r and its dependencies. * libc/time/Makefile.am: Add the new file. * libc/time/Makefile.in: Regenerated.
11 lines
160 B
C
11 lines
160 B
C
#include <time.h>
|
|
|
|
/* Global timezone variables. */
|
|
|
|
/* Default timezone to GMT */
|
|
char *_tzname[2] = {"GMT", "GMT"};
|
|
int _daylight = 0;
|
|
long _timezone = 0;
|
|
|
|
|