8 lines
109 B
C
Raw Normal View History

2022-03-10 10:44:48 +01:00
#include "time32.h"
#include <time.h>
struct tm *__gmtime32(time32_t *t)
{
return gmtime(&(time_t){*t});
}