git: purgatorio

ref: fa9f4c5c6852ce467644f610e77504664cb86af4
dir: /utils/iar/Posix.c/

View raw version
#include	<lib9.h>

char *
myctime(long x)
{
	time_t t;

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