1*48519Sbostic /*- 2*48519Sbostic * Copyright (c) 1985 The Regents of the University of California. 3*48519Sbostic * All rights reserved. 4*48519Sbostic * 5*48519Sbostic * %sccs.include.proprietary.c% 624999Ssam */ 724999Ssam 824999Ssam #ifndef lint 9*48519Sbostic static char sccsid[] = "@(#)point.c 5.2 (Berkeley) 04/22/91"; 10*48519Sbostic #endif /* not lint */ 1124999Ssam 1224999Ssam point(xi,yi){ 1324999Ssam line(xi,yi,xi,yi); 1424999Ssam } 15