1*24999Ssam /* 2*24999Ssam * Copyright (c) 1985 Regents of the University of California. 3*24999Ssam * All rights reserved. The Berkeley software License Agreement 4*24999Ssam * specifies the terms and conditions for redistribution. 5*24999Ssam */ 6*24999Ssam 7*24999Ssam #ifndef lint 8*24999Ssam static char sccsid[] = "@(#)point.c 5.1 (Berkeley) 09/21/85"; 9*24999Ssam #endif not lint 10*24999Ssam 11*24999Ssam point(xi,yi){ 12*24999Ssam line(xi,yi,xi,yi); 13*24999Ssam } 14