1*48508Sbostic /*- 2*48508Sbostic * Copyright (c) 1980 The Regents of the University of California. 3*48508Sbostic * All rights reserved. 4*48508Sbostic * 5*48508Sbostic * %sccs.include.proprietary.c% 619974Sdist */ 719974Sdist 815493Sralph #ifndef lint 9*48508Sbostic static char sccsid[] = "@(#)move.c 5.2 (Berkeley) 04/22/91"; 10*48508Sbostic #endif /* not lint */ 1115493Sralph 1215493Sralph #include "gigi.h" 1315493Sralph 1415493Sralph move(xi,yi) 1515493Sralph int xi,yi; 1615493Sralph { 1715493Sralph currentx = xsc(xi); 1815493Sralph currenty = ysc(yi); 1915493Sralph printf("P[%d,%d]",currentx, currenty); 2015493Sralph } 21