git: purgatorio

ref: 15e065df12bf7ad79000d150cefa5038ee7416b3
dir: /utils/iar/Posix.c/

View raw version
#include	<lib9.h>

char *
myctime(long x)
{
	time_t t;

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