1*22640Sdist /* 2*22640Sdist * Copyright (c) 1980 Regents of the University of California. 3*22640Sdist * All rights reserved. The Berkeley software License Agreement 4*22640Sdist * specifies the terms and conditions for redistribution. 5*22640Sdist */ 6*22640Sdist 717638Sjak #ifndef lint 8*22640Sdist static char sccsid[] = "@(#)point.c 5.1 (Berkeley) 06/07/85"; 9*22640Sdist #endif not lint 10*22640Sdist 1117638Sjak point_(xi,yi) 1217638Sjak int *xi, *yi; 1317638Sjak { 1417638Sjak point(*xi,*yi); 1517638Sjak } 16