148519Sbostic /*- 2*61395Sbostic * Copyright (c) 1985, 1993 3*61395Sbostic * The Regents of the University of California. All rights reserved. 448519Sbostic * 548519Sbostic * %sccs.include.proprietary.c% 624991Ssam */ 724991Ssam 824991Ssam #ifndef lint 9*61395Sbostic static char sccsid[] = "@(#)circle.c 8.1 (Berkeley) 06/04/93"; 1048519Sbostic #endif /* not lint */ 1124991Ssam circle(x,y,r)1224991Ssamcircle(x,y,r){ 1324991Ssam arc(x,y,x+r,y,x+r,y); 1424991Ssam } 15