code: 9ferno

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

View raw version
#include	<lib9.h>

char *
myctime(long x)
{
	time_t t;

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