code: 9ferno

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

View raw version
#include	<lib9.h>

char *
myctime(long x)
{
	time_t t;

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