shithub: scc

ref: 079e6ba6e4a218a64d593894050f546ca5cd3d34
dir: /src/libc/time/ctime.c/

View raw version
#include <time.h>

#undef ctime

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