xref: /csrg-svn/lib/libplot/plot/circle.c (revision 13397)
1*13397Ssam #ifndef lint
2*13397Ssam static char sccsid[] = "@(#)circle.c	4.1 (Berkeley) 06/27/83";
3*13397Ssam #endif
4*13397Ssam 
5*13397Ssam #include <stdio.h>
6*13397Ssam circle(x,y,r){
7*13397Ssam 	putc('c',stdout);
8*13397Ssam 	putsi(x);
9*13397Ssam 	putsi(y);
10*13397Ssam 	putsi(r);
11*13397Ssam }
12