shithub: purgatorio

ref: a411870ee4640241e3c494367d922847da84f972
dir: purgatorio/utils/iar/Posix.c

View raw version
#include	<lib9.h>

char *
myctime(long x)
{
	time_t t;

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