4.1cBSD/usr/src/usr.lib/lib2648/move.c

Compare this file to the similar file:
Show the results in this format:

/*	move.c	4.1	83/03/09	*/
/*
 * move to (x, y).  Both the _pen and cursor are supposed to be moved.
 * We really just remember it for later, in case we move again.
 */

#include "2648.h"

move(x, y)
{
#ifdef TRACE
	if (trace)
		fprintf(trace, "\tmove(%d, %d), ", x, y);
#endif
	_supx = x;
	_supy = y;
}