1*48505Sbostic /*- 2*48505Sbostic * Copyright (c) 1980 The Regents of the University of California. 3*48505Sbostic * All rights reserved. 4*48505Sbostic * 5*48505Sbostic * %sccs.include.proprietary.c% 619971Sdist */ 719971Sdist 815438Sralph #ifndef lint 9*48505Sbostic static char sccsid[] = "@(#)move.c 5.2 (Berkeley) 04/22/91"; 10*48505Sbostic #endif /* not lint */ 1115438Sralph 1215438Sralph #include "dumb.h" 1315438Sralph 1415438Sralph move(x,y) 1515438Sralph int x,y; 1615438Sralph { 1715438Sralph scale(x, y); 1815438Sralph currentx = x; 1915438Sralph currenty = y; 2015438Sralph } 21