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