gmtime.c 175 B

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