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