148504Sbostic /*-
2*61330Sbostic * Copyright (c) 1980, 1993
3*61330Sbostic * The Regents of the University of California. All rights reserved.
448504Sbostic *
548504Sbostic * %sccs.include.proprietary.c%
619851Sdist */
719851Sdist
815412Sralph #ifndef lint
9*61330Sbostic static char sccsid[] = "@(#)circle.c 8.1 (Berkeley) 06/04/93";
1048504Sbostic #endif /* not lint */
1115412Sralph
circle(xc,yc,r)1215412Sralph circle (xc,yc,r)
1315412Sralph int xc,yc,r;
1415412Sralph {
1515412Sralph arc(xc,yc, xc+r,yc, xc-r,yc);
1615412Sralph arc(xc,yc, xc-r,yc, xc+r,yc);
1715412Sralph }
18