148521Sbostic /*- 2*61401Sbostic * Copyright (c) 1983, 1993 3*61401Sbostic * The Regents of the University of California. All rights reserved. 448521Sbostic * 548521Sbostic * %sccs.include.proprietary.c% 648521Sbostic */ 748521Sbostic 813320Ssam #ifndef lint 9*61401Sbostic static char sccsid[] = "@(#)point.c 8.1 (Berkeley) 06/04/93"; 1048521Sbostic #endif /* not lint */ 1113320Ssam point(xi,yi)1213320Ssampoint(xi,yi){ 1313320Ssam move(xi,yi); 1413320Ssam label("."); 1513320Ssam return; 1613320Ssam } 17