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