initial check-in, version 0.5.0
[musl] / src / time / gmtime.c
1 #include <time.h>
2
3 #include "__time.h"
4
5 struct tm *gmtime(const time_t *t)
6 {
7         static struct tm tm;
8         __time_to_tm(*t, &tm);
9         tm.tm_isdst = 0;
10         return &tm;
11 }