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