shithub: scc

ref: 99970c47ca06ce506823bd2329a37a8f439ce304
dir: /src/libc/time/ctime.c/

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

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