dns response handling: ignore presence of wrong-type RRs
[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 }