shithub: scc

ref: 5a887532fdcc8d14f6ee68fb647dd83725c0f43f
dir: /src/libc/time/ctime.c/

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

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