xref: /csrg-svn/lib/libplot/plot/circle.c (revision 48520)
1*48520Sbostic /*-
2*48520Sbostic  * Copyright (c) 1983 The Regents of the University of California.
3*48520Sbostic  * All rights reserved.
4*48520Sbostic  *
5*48520Sbostic  * %sccs.include.proprietary.c%
6*48520Sbostic  */
7*48520Sbostic 
813397Ssam #ifndef lint
9*48520Sbostic static char sccsid[] = "@(#)circle.c	4.2 (Berkeley) 04/22/91";
10*48520Sbostic #endif /* not lint */
1113397Ssam 
1213397Ssam #include <stdio.h>
1313397Ssam circle(x,y,r){
1413397Ssam 	putc('c',stdout);
1513397Ssam 	putsi(x);
1613397Ssam 	putsi(y);
1713397Ssam 	putsi(r);
1813397Ssam }
19