shithub: scc

ref: 7e92426be219acb2543239eff0b3a6fb3b7750da
dir: /src/libc/time/ctime.c/

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

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