shithub: scc

ref: 06d0dd5d70ecd660d8050c61431fbf68f14f256b
dir: /lib/c/ctime.c/

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

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