148525Sbostic /*- 2*61412Sbostic * Copyright (c) 1983, 1993 3*61412Sbostic * The Regents of the University of California. All rights reserved. 448525Sbostic * 548525Sbostic * %sccs.include.proprietary.c% 648525Sbostic */ 748525Sbostic 813372Ssam #ifndef lint 9*61412Sbostic static char sccsid[] = "@(#)point.c 8.1 (Berkeley) 06/04/93"; 1048525Sbostic #endif /* not lint */ 1113372Ssam point(xi,yi)1213372Ssampoint(xi,yi){ 1313372Ssam move(xi,yi); 1413372Ssam label("."); 1513372Ssam return; 1613372Ssam } 17