shithub: scc

ref: ca68760317b98797cdd7b0464390b04bb1fd8f23
dir: /lib/c/ctime.c/

View raw version
#include <time.h>
#undef ctime

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