1 2 3 4 5 6 7
#include <time.h> struct tm *localtime(const time_t *timer) { static struct tm result; return localtime_r(timer, &result); }