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