prevent CNAME/PTR parsing from reading data past the response end
[musl] / compat / time32 / localtime32.c
1 #include "time32.h"
2 #include <time.h>
3
4 struct tm *__localtime32(time32_t *t)
5 {
6         return localtime(&(time_t){*t});
7 }