git: purgatorio

ref: 51bcc63cc6bce3f9dab27cf6bd7155512b82c8fa
dir: /utils/iar/Posix.c/

View raw version
#include	<lib9.h>

char *
myctime(long x)
{
	time_t t;

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