shithub: purgatorio

ref: 27ca2618d4bc7642370feb39a83a3cff92495ca2
dir: /utils/iar/Posix.c/

View raw version
#include	<lib9.h>

char *
myctime(long x)
{
	time_t t;

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