ref: f2227c6d0370cfc5c2b1472475fe9564dbb05e25 dir: /src/libc/time/asctime.c/
#include <time.h> #undef asctime char * asctime(const struct tm *tm) { static char buf[30]; strftime(buf, sizeof(buf), "%c\n", tm); return buf; }