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