fix wrong sigaction syscall ABI on mips*, or1k, microblaze, riscv64
[musl] / src / time / gmtime.c
1 #include "time_impl.h"
2 #include <errno.h>
3
4 struct tm *gmtime(const time_t *t)
5 {
6         static struct tm tm;
7         return __gmtime_r(t, &tm);
8 }