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