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