shithub: scc

ref: 25bc36bff00d311a5d3fd681ecf20b707df455a4
dir: /src/libc/time/ctime.c/

View raw version
#include <time.h>
#undef ctime

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