add time32 ABI compat shims, compat source tree
[oweals/musl.git] / compat / time32 / gmtime32.c
1 #include "time32.h"
2 #include <time.h>
3
4 struct tm *__gmtime32(time32_t *t)
5 {
6         return gmtime(&(time_t){*t});
7 }