blob: 527ca357c343a39174f343b306c216105bf9f921 [file] [log] [blame]
#include <time.h>
char* ctime_r(const time_t* t, char* buf) {
struct tm tm;
localtime_r(t, &tm);
return asctime_r(&tm, buf);
}