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