shithub: scc

ref: 4ddb383f2b1ea7f017404f94e9e2683af3bcc43f
dir: /src/libc/time/ctime.c/

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

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