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