shithub: scc

ref: 823acc68023d0d810d7d830f13da713625bc51f4
dir: /lib/c/ctime.c/

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

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