shithub: scc

ref: 9c363497114e0f7a050c5952fdadb1236e39ed8e
dir: /src/libc/time/ctime.c/

View raw version
#include <time.h>

#undef ctime

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