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