code: purgatorio

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

View raw version
#include	<lib9.h>

char *
myctime(long x)
{
	time_t t;

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