shithub: scc

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

View raw version
#include <time.h>

#undef ctime

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