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