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{
8	static struct tm tm;
9	return __gmtime_r(t, &tm);
10}
11