1*15495Sralph #ifndef lint 2*15495Sralph static char sccsid[] = "@(#)point.c 4.1 (Berkeley) 11/10/83"; 3*15495Sralph #endif 4*15495Sralph 5*15495Sralph #include "gigi.h" 6*15495Sralph 7*15495Sralph point(xi,yi) 8*15495Sralph int xi,yi; 9*15495Sralph { 10*15495Sralph if(xsc(xi)!=currentx || ysc(yi)!=currenty) 11*15495Sralph move(xi,yi); 12*15495Sralph printf("V[]"); 13*15495Sralph } 14