PWB1/sys/source/s2/uname.c

Compare this file to the similar file:
Show the results in this format:

char	un[8];
main()
{
	register i;
	uname(un);
	for(i=0;i<8;i++)
		if(un[i])
			write(1,&un[i],1); else
			break;
	write(1,"\n",1);
}