code: 9ferno

ref: 3384fa1a04ee7075b6c77bd2f0624295d82b0341
dir: /utils/iar/Posix.c/

View raw version
#include	<lib9.h>

char *
myctime(long x)
{
	time_t t;

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