shithub: scc

ref: 3c2610fd4650e8e7bb396d86141ada54e52e368d
dir: /src/libc/time/ctime.c/

View raw version
#include <time.h>

#undef ctime

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