date and time created 85/01/02 20:29:37 by jak
[unix-history] / usr / src / lib / libplot / vt0 / move.c
#ifndef lint
static char sccsid[] = "@(#)move.c 4.1 (Berkeley) %G%";
#endif
extern vti;
extern xnow,ynow;
move(xi,yi){
struct {char pad,c; int x,y;} p;
p.c = 9;
p.x = xnow = xsc(xi);
p.y = ynow = ysc(yi);
write(vti,&p.c,5);
}