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