gmtime.c raw

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