shithub: scc

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

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

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