shithub: scc

ref: 1055827d79c5371b019dfeec0fc91f2c5c4ebafd
dir: /src/libc/time/ctime.c/

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

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