shithub: purgatorio

ref: 76b565d8b219c8db94a882e93725b4ab735414de
dir: /utils/iar/Posix.c/

View raw version
#include	<lib9.h>

char *
myctime(long x)
{
	time_t t;

	t = x;
	return ctime(&t);
}