1*48506Sbostic /*- 2*48506Sbostic * Copyright (c) 1980 The Regents of the University of California. 3*48506Sbostic * All rights reserved. 4*48506Sbostic * 5*48506Sbostic * %sccs.include.proprietary.c% 622638Sdist */ 722638Sdist 817636Sjak #ifndef lint 9*48506Sbostic static char sccsid[] = "@(#)move.c 5.2 (Berkeley) 04/22/91"; 10*48506Sbostic #endif /* not lint */ 1122638Sdist 1217636Sjak move_(xi,yi) 1317636Sjak int *xi, *yi; 1417636Sjak { 1517636Sjak move(*xi,*yi); 1617636Sjak } 17