shithub: scc

ref: 08f54b63417d00eff3ca95469a436888add76741
dir: /src/libc/time/ctime.c/

View raw version
#include <time.h>

#undef ctime

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