1 /* Copyright 2005 Tom Walsh <tom@openhardware.net> */
2 #include <time.h>
3 
4 /* Global timezone variables.  */
5 
6 /* Default timezone to GMT */
7 char *_tzname[2] = {"GMT", "GMT"};
8 int _daylight = 0;
9 long _timezone = 0;
10 
11 
12