shithub: scc

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

View raw version
#include <time.h>

#undef ctime

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