shithub: scc

ref: 440e24ce81386865be595f5825bc7287d5063ccc
dir: /src/libc/time/ctime.c/

View raw version
#include <time.h>

#undef ctime

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