0b44a031
1 2 3 4 5 6 7 8
#include <time.h> char *__asctime(const struct tm *, char *); char *asctime_r(const struct tm *tm, char *buf) { return __asctime(tm, buf); }