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