#ifdef HAVE_CONFIG_H #include #endif #ifdef HAVE_TIME_H #include #endif struct tm *localtime_r(const time_t *timep, struct tm *result) { /* no thread safety. */ *result = *localtime(timep); return result; }