/*- * Copyright (c) 1983 The Regents of the University of California. * All rights reserved. * * %sccs.include.proprietary.c% */ #ifndef lint static char sccsid[] = "@(#)move.c 5.2 (Berkeley) 04/22/91"; #endif /* not lint */ #include "aed.h" /*--------------------------------------------------------- * This routine moves the current point to (x,y). * * Results: None. * Side Effects: As above. *--------------------------------------------------------- */ move(x, y) int x, y; { curx = x; cury = y; }