shithub: scc

ref: 78f50052f168c1f93590568724acf30195fde4ef
dir: /src/libc/time/ctime.c/

View raw version
#include <time.h>

#undef ctime

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