xref: /csrg-svn/lib/libplot/f77plot/circle.c (revision 61374)
148506Sbostic /*-
2*61374Sbostic  * Copyright (c) 1980, 1993
3*61374Sbostic  *	The Regents of the University of California.  All rights reserved.
448506Sbostic  *
548506Sbostic  * %sccs.include.proprietary.c%
622630Sdist  */
722630Sdist 
817628Sjak #ifndef lint
9*61374Sbostic static char sccsid[] = "@(#)circle.c	8.1 (Berkeley) 06/04/93";
1048506Sbostic #endif /* not lint */
1122630Sdist 
circle_(x,y,r)1217628Sjak circle_(x,y,r)
1317628Sjak int *x, *y, *r;
1417628Sjak {
1517628Sjak 	circle(*x,*y,*r);
1617628Sjak }
17