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