shithub: purgatorio

ref: 654935ba71201d7215d9fcd96181a330ec6ff617
dir: /utils/iar/Posix.c/

View raw version
#include	<lib9.h>

char *
myctime(long x)
{
	time_t t;

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