code: 9ferno

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

View raw version
#include	<lib9.h>

char *
myctime(long x)
{
	time_t t;

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