overhaul internally-public declarations using wrapper headers
[musl.git] / src / time / gmtime.c
blob6320b6377e62310dfde727d165085e162480d7d2
1 #include "time_impl.h"
2 #include <errno.h>
4 struct tm *gmtime(const time_t *t)
6 static struct tm tm;
7 return __gmtime_r(t, &tm);