#ifndef lint static char sccsid[] = "@(#)circle.c 4.1 (Berkeley) 11/10/83"; #endif #include "hp7221.h" circle (xc,yc,r) int xc,yc,r; { if( r < 1 ) { point( xc, yc ); return; } move( xc, yc ); putchar( 't' ); putMBN( scaleX(r) ); }