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