xref: /original-bsd/lib/libplot/f77plot/line.c (revision 4c50d0b9)
1d924a1feSbostic /*-
2*4c50d0b9Sbostic  * Copyright (c) 1980, 1993
3*4c50d0b9Sbostic  *	The Regents of the University of California.  All rights reserved.
4d924a1feSbostic  *
5d924a1feSbostic  * %sccs.include.proprietary.c%
692e17931Sdist  */
792e17931Sdist 
837f83a39Sjak #ifndef lint
9*4c50d0b9Sbostic static char sccsid[] = "@(#)line.c	8.1 (Berkeley) 06/04/93";
10d924a1feSbostic #endif /* not lint */
1192e17931Sdist 
line_(x0,y0,x1,y1)1237f83a39Sjak line_(x0,y0,x1,y1)
1337f83a39Sjak int *x0, *y0, *x1, *y1;
1437f83a39Sjak {
1537f83a39Sjak 	line(*x0,*y0,*x1,*y1);
1637f83a39Sjak }
17