code: purgatorio

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

View raw version
#include	<lib9.h>

char *
myctime(long x)
{
	time_t t;

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