fxlibc/src/time/localtime.c

8 lines
148 B
C

#include <time.h>
/* TODO: localtime: No timezone specification is supported */
struct tm *localtime(const time_t *time)
{
return gmtime(time);
}