code: 9ferno

ref: 728eff896074bfa69130c243941ffc6d5c19a735
dir: /utils/iar/Nt.c/

View raw version
#include	<lib9.h>

char *
myctime(long x)
{
	time_t t;

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