blob: 86429d52ccde2df83748430f00aae8e8682b52b0 [file] [log] [blame]
#include <errno.h>
#include "time_impl.h"
struct tm* __gmtime_r(const time_t* restrict, struct tm* restrict);
struct tm* gmtime(const time_t* t) {
static struct tm tm;
return __gmtime_r(t, &tm);
}