8 lines
109 B
C
Raw Normal View History

2024-03-07 19:42:38 +08:00
#include "time32.h"
#include <time.h>
struct tm *__gmtime32(time32_t *t)
{
return gmtime(&(time_t){*t});
}