xref: /csrg-svn/lib/libplot/t4014/circle.c (revision 61406)
148524Sbostic /*-
2*61406Sbostic  * Copyright (c) 1983, 1993
3*61406Sbostic  *	The Regents of the University of California.  All rights reserved.
448524Sbostic  *
548524Sbostic  * %sccs.include.proprietary.c%
648524Sbostic  */
748524Sbostic 
813344Ssam #ifndef lint
9*61406Sbostic static char sccsid[] = "@(#)circle.c	8.1 (Berkeley) 06/04/93";
1048524Sbostic #endif /* not lint */
1113344Ssam 
circle(x,y,r)1213344Ssam circle(x,y,r){
1313344Ssam 	arc(x,y,x+r,y,x+r,y);
1413344Ssam }
15