shithub: scc

ref: 65a354524234ab1bc797faadd25dc30fc02b6a9a
dir: /src/libc/time/ctime.c/

View raw version
#include <time.h>

#undef ctime

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