musl-tcc/compat/time32/localtime32.c

8 lines
115 B
C
Raw Normal View History

2022-03-20 08:48:53 +00:00
#include "time32.h"
#include <time.h>
struct tm *__localtime32(time32_t *t)
{
return localtime(&(time_t){*t});
}