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