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