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