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