148502Sbostic /*- 2*61327Sbostic * Copyright (c) 1983, 1993 3*61327Sbostic * The Regents of the University of California. All rights reserved. 448502Sbostic * 548502Sbostic * %sccs.include.proprietary.c% 648502Sbostic */ 748502Sbostic 815522Sralph #ifndef lint 9*61327Sbostic static char sccsid[] = "@(#)move.c 8.1 (Berkeley) 06/04/93"; 1048502Sbostic #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 */ move(x,y)2115522Sralphmove(x, y) 2215522Sralph int x, y; 2315522Sralph { 2415522Sralph curx = x; 2515522Sralph cury = y; 2615522Sralph } 27