xref: /csrg-svn/lib/libplot/f77plot/arc.c (revision 22628)
1*22628Sdist /*
2*22628Sdist  * Copyright (c) 1980 Regents of the University of California.
3*22628Sdist  * All rights reserved.  The Berkeley software License Agreement
4*22628Sdist  * specifies the terms and conditions for redistribution.
5*22628Sdist  */
6*22628Sdist 
717626Sjak #ifndef lint
8*22628Sdist static char sccsid[] = "@(#)arc.c	5.1 (Berkeley) 06/07/85";
9*22628Sdist #endif not lint
10*22628Sdist 
1117626Sjak arc_(x,y,x0,y0,x1,y1)
1217626Sjak int *x, *y, *x0, *y0, *x1, *y1;
1317626Sjak {
1417626Sjak 	arc(*x, *y, *x0, *y0, *x1, *y1);
1517626Sjak }
16