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