shithub: scc

ref: 177b56dfc2e35ed0b5c57963c4be1d435147d0bd
dir: /src/libc/time/ctime.c/

View raw version
#include <time.h>

#undef ctime

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