shithub: scc

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

View raw version
#include <time.h>

#undef ctime

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