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