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% 622640Sdist */ 722640Sdist 817638Sjak #ifndef lint 9*48506Sbostic static char sccsid[] = "@(#)point.c 5.2 (Berkeley) 04/22/91"; 10*48506Sbostic #endif /* not lint */ 1122640Sdist 1217638Sjak point_(xi,yi) 1317638Sjak int *xi, *yi; 1417638Sjak { 1517638Sjak point(*xi,*yi); 1617638Sjak } 17