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