shithub: scc

ref: faa82abe38fca557949e44a1745039e39ee5f232
dir: /src/libc/time/ctime.c/

View raw version
#include <time.h>

#undef ctime

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