xref: /csrg-svn/lib/libplot/f77plot/line.c (revision 22636)
1*22636Sdist /*
2*22636Sdist  * Copyright (c) 1980 Regents of the University of California.
3*22636Sdist  * All rights reserved.  The Berkeley software License Agreement
4*22636Sdist  * specifies the terms and conditions for redistribution.
5*22636Sdist  */
6*22636Sdist 
717634Sjak #ifndef lint
8*22636Sdist static char sccsid[] = "@(#)line.c	5.1 (Berkeley) 06/07/85";
9*22636Sdist #endif not lint
10*22636Sdist 
1117634Sjak line_(x0,y0,x1,y1)
1217634Sjak int *x0, *y0, *x1, *y1;
1317634Sjak {
1417634Sjak 	line(*x0,*y0,*x1,*y1);
1517634Sjak }
16