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