gmtime.c 166 B

1234567891011121314
  1. #include <time.h>
  2. extern void __tm_conv();
  3. struct tm *gmtime(timep)
  4. __const time_t *timep;
  5. {
  6. static struct tm tmb;
  7. __tm_conv(&tmb, timep, 0L);
  8. return &tmb;
  9. }