xref: /aosp_15_r20/external/musl/compat/time32/gmtime32_r.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #include "time32.h"
2 #include <time.h>
3 
__gmtime32_r(time32_t * t,struct tm * tm)4 struct tm *__gmtime32_r(time32_t *t, struct tm *tm)
5 {
6 	return gmtime_r(&(time_t){*t}, tm);
7 }
8