shithub: scc

ref: f43dac0cd22b59a006beb7438240e2d9880d27cc
dir: /src/libc/time/ctime.c/

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

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