shithub: scc

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

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

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