shithub: scc

ref: 93143fdbcbdf5fa2ecf4759f6c71344856469d87
dir: /src/libc/time/ctime.c/

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

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