shithub: scc

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

View raw version
#include <time.h>

#undef ctime

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