xref: /csrg-svn/lib/libplot/t4013/circle.c (revision 61403)
148523Sbostic /*-
2*61403Sbostic  * Copyright (c) 1985, 1993
3*61403Sbostic  *	The Regents of the University of California.  All rights reserved.
448523Sbostic  *
548523Sbostic  * %sccs.include.proprietary.c%
622614Sdist  */
722614Sdist 
817611Sjak #ifndef lint
9*61403Sbostic static char sccsid[] = "@(#)circle.c	8.1 (Berkeley) 06/04/93";
1048523Sbostic #endif /* not lint */
1117611Sjak 
circle(x,y,r)1217611Sjak circle(x,y,r){
1317611Sjak 	arc(x,y,x+r,y,x+r,y);
1417611Sjak }
15