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