shithub: scc

ref: 1a5e3a4dd663c092030315c8a240d0737473102b
dir: /src/libc/time/ctime.c/

View raw version
#include <time.h>

#undef ctime

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