shithub: scc

ref: 0fb36627230e9c8defd681c61e4917a140fcc03f
dir: /src/libc/time/ctime.c/

View raw version
#include <time.h>

#undef ctime

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