gmtime.c 216 B

12345678910111213
  1. #include <time.h>
  2. extern void __tm_conv();
  3. /* Our static data lives in __time_static.c */
  4. extern struct tm __tmb;
  5. struct tm *gmtime(__const time_t *timep)
  6. {
  7. __tm_conv(&__tmb, timep, 0L);
  8. return &__tmb;
  9. }