1 #ifndef lint 2 static char sccsid[] = "@(#)move.c 4.1 (Berkeley) 11/10/83"; 3 #endif 4 5 #include "bg.h" 6 7 move(xi,yi) 8 int xi,yi; 9 { 10 currentx = scaleX(xi); 11 currenty = scaleY(yi); 12 putchar( ESC ); 13 printf(":%d;%dm", currentx, currenty); 14 } 15