shithub: scc

ref: 621d21441a0145d30809b3d7af8571e61da63c04
dir: /src/libc/time/ctime.c/

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

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