xref: /original-bsd/old/lib2648/move.c (revision 3109f15a)
1 /*	move.c	4.1	83/03/09	*/
2 /*
3  * move to (x, y).  Both the _pen and cursor are supposed to be moved.
4  * We really just remember it for later, in case we move again.
5  */
6 
7 #include "2648.h"
8 
9 move(x, y)
10 {
11 #ifdef TRACE
12 	if (trace)
13 		fprintf(trace, "\tmove(%d, %d), ", x, y);
14 #endif
15 	_supx = x;
16 	_supy = y;
17 }
18