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