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