148506Sbostic /*-
2*61376Sbostic * Copyright (c) 1980, 1993
3*61376Sbostic * The Regents of the University of California. All rights reserved.
448506Sbostic *
548506Sbostic * %sccs.include.proprietary.c%
622636Sdist */
722636Sdist
817634Sjak #ifndef lint
9*61376Sbostic static char sccsid[] = "@(#)line.c 8.1 (Berkeley) 06/04/93";
1048506Sbostic #endif /* not lint */
1122636Sdist
line_(x0,y0,x1,y1)1217634Sjak line_(x0,y0,x1,y1)
1317634Sjak int *x0, *y0, *x1, *y1;
1417634Sjak {
1517634Sjak line(*x0,*y0,*x1,*y1);
1617634Sjak }
17