shithub: scc

ref: 0922923b6268490b89a24c1b4cc7316a34daea16
dir: /src/libc/time/ctime.c/

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

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