ref: 02abca68e91999009c0f3ef154fb99f39c212c2c dir: /src/libc/time/ctime.c/
#include <time.h> #undef ctime char * ctime(const time_t *t) { return asctime(localtime(t)); }