shithub: scc

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

View raw version
#include <time.h>

#undef ctime

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