shithub: scc

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

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

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