code: 9ferno

ref: 9a049546a0013a2b6590c05a1ee24e5924b2292c
dir: /utils/iar/Posix.c/

View raw version
#include	<lib9.h>

char *
myctime(long x)
{
	time_t t;

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