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