shithub: scc

ref: 88ed18b6b1014546e25583c8d2372ba8030e1bf8
dir: /src/libc/time/ctime.c/

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

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