1*15422Sralph #ifndef lint 2*15422Sralph static char sccsid[] = "@(#)point.c 4.1 (Berkeley) 11/10/83"; 3*15422Sralph #endif 4*15422Sralph 5*15422Sralph point(xi, yi) 6*15422Sralph int xi, yi; 7*15422Sralph { 8*15422Sralph move(xi, yi); 9*15422Sralph label("."); 10*15422Sralph } 11