shithub: scc

ref: 44f728861fa35ba070e36bb60c2694e7e979a37f
dir: /src/libc/time/ctime.c/

View raw version
#include <time.h>

#undef ctime

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