shithub: scc

ref: 46304892ba34a7e74a604095bf375207d39e33f9
dir: /src/libc/time/ctime.c/

View raw version
#include <time.h>

#undef ctime

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