ref: cf234838bb0e7c772d6f3214a28fc55951737abe
dir: /lib/c/asctime.c/
#include <time.h> #undef asctime #include <stdio.h> // TODO: remove me! char * asctime(const struct tm *tm) { static char buf[30]; strftime(buf, sizeof(buf), "%c\n", tm); return buf; }