shithub: scc

ref: de4795d333b7ac4c514288683e30afb1199f0dd7
dir: /src/libc/time/ctime.c/

View raw version
#include <time.h>

#undef ctime

char *
ctime(const time_t *t)
{
	return asctime(localtime(t));
}