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