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