shithub: scc

ref: d481312cf28aa0d662f5699c33e6f1f4c0061bee
dir: /lib/c/ctime.c/

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

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