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