1*48506Sbostic /*- 2*48506Sbostic * Copyright (c) 1980 The Regents of the University of California. 3*48506Sbostic * All rights reserved. 4*48506Sbostic * 5*48506Sbostic * %sccs.include.proprietary.c% 622636Sdist */ 722636Sdist 817634Sjak #ifndef lint 9*48506Sbostic static char sccsid[] = "@(#)line.c 5.2 (Berkeley) 04/22/91"; 10*48506Sbostic #endif /* not lint */ 1122636Sdist 1217634Sjak line_(x0,y0,x1,y1) 1317634Sjak int *x0, *y0, *x1, *y1; 1417634Sjak { 1517634Sjak line(*x0,*y0,*x1,*y1); 1617634Sjak } 17