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