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