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