shithub: scc

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

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

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