shithub: scc

ref: 72154ee31c060546f417db8094554ce8940df181
dir: /lib/c/ctime.c/

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

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