date and time created 83/08/05 13:35:31 by sam
[unix-history] / usr / src / old / lib2648 / move.c
CommitLineData
593ecfa2
RC
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
9move(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}