shithub: purgatorio

ref: 7975eec3e602fd5bc3e93c78f4166259190f2fe9
dir: /utils/iar/Nt.c/

View raw version
#include	<lib9.h>

char *
myctime(long x)
{
	time_t t;

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