code: 9ferno

ref: 57446af9a447c3a81414131f2407a9ca6f6a1a94
dir: /utils/iar/Posix.c/

View raw version
#include	<lib9.h>

char *
myctime(long x)
{
	time_t t;

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