code: 9ferno

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

View raw version
#include	<lib9.h>

char *
myctime(long x)
{
	time_t t;

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