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