shithub: scc

ref: 52b6ff8b2915bb64d194191dfdeda6539e71fa8f
dir: /src/libc/time/ctime.c/

View raw version
#include <time.h>

#undef ctime

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