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