shithub: scc

ref: 6eaa4bfaae6f1836f8250830673a48a467e5d757
dir: /lib/c/ctime.c/

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

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