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