xref: /csrg-svn/lib/libplot/t4014/circle.c (revision 13344)
1*13344Ssam #ifndef lint
2*13344Ssam static char sccsid[] = "@(#)circle.c	4.1 (Berkeley) 06/27/83";
3*13344Ssam #endif
4*13344Ssam 
5*13344Ssam circle(x,y,r){
6*13344Ssam 	arc(x,y,x+r,y,x+r,y);
7*13344Ssam }
8