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