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