shithub: scc

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

View raw version
#include <time.h>

#undef ctime

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