shithub: scc

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

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

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