shithub: scc

ref: 3cc0508834a26b517381707f4a448ecb4a3e43bd
dir: /src/libc/time/ctime.c/

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

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