1 #ifndef lint 2 static char sccsid[] = "@(#)circle.c 1.1 (Berkeley) 01/02/85"; 3 #endif 4 circle_(x,y,r) 5 int *x, *y, *r; 6 { 7 circle(*x,*y,*r); 8 } 9