shithub: scc

ref: 36747647964a2893277d27848ee8a1d577455cf8
dir: /src/libc/time/ctime.c/

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

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