shithub: scc

ref: a80c579064560b4bcf8ed28ed857b6265dc5fd37
dir: /src/libc/time/ctime.c/

View raw version
#include <time.h>

#undef ctime

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