summaryrefslogtreecommitdiff
path: root/compat/time32/localtime32.c
blob: 96bc303490106191ec6547d2f907da6720cb6f9c (plain) (blame)
1
2
3
4
5
6
7
#include "time32.h"
#include <time.h>

struct tm *__localtime32(time32_t *t)
{
	return localtime(&(time_t){*t});
}