shithub: scc

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

View raw version
#include <time.h>

#undef ctime

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