date and time created 85/01/02 20:10:33 by jak
[unix-history] / usr / src / lib / libplot / vt0 / move.c
CommitLineData
f730d0ff
SL
1#ifndef lint
2static char sccsid[] = "@(#)move.c 4.1 (Berkeley) %G%";
3#endif
4
5extern vti;
6extern xnow,ynow;
7move(xi,yi){
8 struct {char pad,c; int x,y;} p;
9 p.c = 9;
10 p.x = xnow = xsc(xi);
11 p.y = ynow = ysc(yi);
12 write(vti,&p.c,5);
13}