xref: /csrg-svn/lib/libplot/plot/circle.c (revision 61399)
148520Sbostic /*-
2*61399Sbostic  * Copyright (c) 1983, 1993
3*61399Sbostic  *	The Regents of the University of California.  All rights reserved.
448520Sbostic  *
548520Sbostic  * %sccs.include.proprietary.c%
648520Sbostic  */
748520Sbostic 
813397Ssam #ifndef lint
9*61399Sbostic static char sccsid[] = "@(#)circle.c	8.1 (Berkeley) 06/04/93";
1048520Sbostic #endif /* not lint */
1113397Ssam 
1213397Ssam #include <stdio.h>
circle(x,y,r)1313397Ssam circle(x,y,r){
1413397Ssam 	putc('c',stdout);
1513397Ssam 	putsi(x);
1613397Ssam 	putsi(y);
1713397Ssam 	putsi(r);
1813397Ssam }
19