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