ref: eb2b3569657b977b75e42778551e9e297fd84f3c 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; }