shithub: scc

ref: 506996ff232e60e27138297823a4e8ce01668548
dir: /lib/c/ctime.c/

View raw version
#include <time.h>
#undef ctime

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