shithub: scc

ref: d2a53b6785e6cdc93bc80220e03e3e27eef41edf
dir: /src/libc/time/ctime.c/

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

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