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