libc/newlib/libc/time/tzvars.c
Jeff Johnston b397593c94 2005-11-08 Tom Walsh <tom@openhardware.net>
* 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.
2005-11-08 22:44:16 +00:00

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;