musl-tcc/compat/time32/gmtime32.c
2022-03-20 16:48:53 +08:00

8 lines
109 B
C

#include "time32.h"
#include <time.h>
struct tm *__gmtime32(time32_t *t)
{
return gmtime(&(time_t){*t});
}