#include <time.h>
struct tm *localtime(const time_t *timer)
{
/* TODO timezone support */
return gmtime(timer);
}