shithub: scc

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

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

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