xref: /csrg-svn/lib/libplot/f77plot/arc.c (revision 48506)
1*48506Sbostic /*-
2*48506Sbostic  * Copyright (c) 1980 The Regents of the University of California.
3*48506Sbostic  * All rights reserved.
4*48506Sbostic  *
5*48506Sbostic  * %sccs.include.proprietary.c%
622628Sdist  */
722628Sdist 
817626Sjak #ifndef lint
9*48506Sbostic static char sccsid[] = "@(#)arc.c	5.2 (Berkeley) 04/22/91";
10*48506Sbostic #endif /* not lint */
1122628Sdist 
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