1*48502Sbostic /*- 2*48502Sbostic * Copyright (c) 1983 The Regents of the University of California. 3*48502Sbostic * All rights reserved. 4*48502Sbostic * 5*48502Sbostic * %sccs.include.proprietary.c% 6*48502Sbostic */ 7*48502Sbostic 815522Sralph #ifndef lint 9*48502Sbostic static char sccsid[] = "@(#)move.c 5.2 (Berkeley) 04/22/91"; 10*48502Sbostic #endif /* not lint */ 1115522Sralph 1215522Sralph #include "aed.h" 1315522Sralph 1415522Sralph /*--------------------------------------------------------- 1515522Sralph * This routine moves the current point to (x,y). 1615522Sralph * 1715522Sralph * Results: None. 1815522Sralph * Side Effects: As above. 1915522Sralph *--------------------------------------------------------- 2015522Sralph */ 2115522Sralph move(x, y) 2215522Sralph int x, y; 2315522Sralph { 2415522Sralph curx = x; 2515522Sralph cury = y; 2615522Sralph } 27