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