3791b24c663754717b36f630dd254b55f2c3064f
[musl] / src / time / gmtime.c
1 #include "time_impl.h"
2 #include <errno.h>
3
4 struct tm *__gmtime_r(const time_t *restrict, struct tm *restrict);
5
6 struct tm *gmtime(const time_t *t)
7 {
8         static struct tm tm;
9         return __gmtime_r(t, &tm);
10 }