code: 9ferno

ref: a67842e7631d8c01fd991defdb219444b11bd4dc
dir: /utils/iar/Nt.c/

View raw version
#include	<lib9.h>

char *
myctime(long x)
{
	time_t t;

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