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