shithub: scc

ref: 6903173cd0f863498a40f0e595ce83b881d71edb
dir: /src/libc/time/ctime.c/

View raw version
#include <time.h>

#undef ctime

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