xref: /csrg-svn/lib/libplot/f77plot/arc.c (revision 61372)
148506Sbostic /*-
2*61372Sbostic  * Copyright (c) 1980, 1993
3*61372Sbostic  *	The Regents of the University of California.  All rights reserved.
448506Sbostic  *
548506Sbostic  * %sccs.include.proprietary.c%
622628Sdist  */
722628Sdist 
817626Sjak #ifndef lint
9*61372Sbostic static char sccsid[] = "@(#)arc.c	8.1 (Berkeley) 06/04/93";
1048506Sbostic #endif /* not lint */
1122628Sdist 
arc_(x,y,x0,y0,x1,y1)1217626Sjak arc_(x,y,x0,y0,x1,y1)
1317626Sjak int *x, *y, *x0, *y0, *x1, *y1;
1417626Sjak {
1517626Sjak 	arc(*x, *y, *x0, *y0, *x1, *y1);
1617626Sjak }
17