gmtime.c 201 B

12345678910
  1. #include "time_impl.h"
  2. #include <errno.h>
  3. struct tm *__gmtime_r(const time_t *restrict, struct tm *restrict);
  4. struct tm *gmtime(const time_t *t)
  5. {
  6. static struct tm tm;
  7. return __gmtime_r(t, &tm);
  8. }