code: 9ferno

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

View raw version
#include	<lib9.h>

char *
myctime(long x)
{
	time_t t;

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