code: 9ferno

ref: 410c1337e07a9f1d521360a160903fe32b4e0d4a
dir: /utils/iar/Posix.c/

View raw version
#include	<lib9.h>

char *
myctime(long x)
{
	time_t t;

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