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