code: purgatorio

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

View raw version
#include	<lib9.h>

char *
myctime(long x)
{
	time_t t;

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