xref: /csrg-svn/lib/libplot/plot/arc.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 
813395Ssam #ifndef lint
9*48520Sbostic static char sccsid[] = "@(#)arc.c	4.2 (Berkeley) 04/22/91";
10*48520Sbostic #endif /* not lint */
1113395Ssam 
1213395Ssam #include <stdio.h>
1313395Ssam arc(xi,yi,x0,y0,x1,y1){
1413395Ssam 	putc('a',stdout);
1513395Ssam 	putsi(xi);
1613395Ssam 	putsi(yi);
1713395Ssam 	putsi(x0);
1813395Ssam 	putsi(y0);
1913395Ssam 	putsi(x1);
2013395Ssam 	putsi(y1);
2113395Ssam }
22