__time_static.c 355 B

1234567891011121314151617
  1. #include <time.h>
  2. /* These globals are exported by the C library */
  3. char *__tzname[2] = { (char *) "GMT", (char *) "GMT" };
  4. int __daylight = 0;
  5. long int __timezone = 0L;
  6. /* Grumble */
  7. weak_alias (__tzname, tzname);
  8. weak_alias (__daylight, daylight);
  9. weak_alias (__timezone, timezone);
  10. /* static data for gmtime() and localtime() */
  11. struct tm __tmb;