xref: /original-bsd/lib/libplot/aed/move.c (revision 18f6d767)
1 #ifndef lint
2 static char sccsid[] = "@(#)move.c	4.1 (Berkeley) 11/11/83";
3 #endif
4 
5 #include "aed.h"
6 
7 /*---------------------------------------------------------
8  *	This routine moves the current point to (x,y).
9  *
10  *	Results:	None.
11  *	Side Effects:	As above.
12  *---------------------------------------------------------
13  */
14 move(x, y)
15 int x, y;
16 {
17     curx = x;
18     cury = y;
19 }
20