code: 9ferno

ref: 0977f294bab0345ba43fbf674449fd8e996c5719
dir: /utils/iar/Nt.c/

View raw version
#include	<lib9.h>

char *
myctime(long x)
{
	time_t t;

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