shithub: scc

ref: bbe177e996faa075ea893b04f16cf341d6ea3678
dir: /lib/c/ctime.c/

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

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