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