shithub: scc

ref: 46b51055e0657109fb95d93022d2e1614290311e
dir: /src/libc/time/ctime.c/

View raw version
#include <time.h>

#undef ctime

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