shithub: scc

ref: 1de26472868d15174ef01a9655555340234c4dbe
dir: /src/libc/time/ctime.c/

View raw version
#include <time.h>

#undef ctime

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