shithub: scc

ref: 7611e66c4a272e9e4ada31a6996670298a476dff
dir: /src/libc/time/ctime.c/

View raw version
#include <time.h>

#undef ctime

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