gmtime.c 156 B

1234567891011
  1. #include <time.h>
  2. #include "__time.h"
  3. struct tm *gmtime(const time_t *t)
  4. {
  5. static struct tm tm;
  6. __time_to_tm(*t, &tm);
  7. tm.tm_isdst = 0;
  8. return &tm;
  9. }