shithub: scc

ref: 08c48f8d3da19e4f1a70e8da9bdef305002666de
dir: /src/libc/time/ctime.c/

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

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