shithub: scc

ref: 88281a76b99c430f41f651baaa6b53eef27fc07e
dir: /src/libc/time/ctime.c/

View raw version
#include <time.h>

#undef ctime

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