date and time created 83/06/27 14:26:20 by sam
[unix-history] / usr / src / lib / libplot / vt0 / point.c
#ifndef lint
static char sccsid[] = "@(#)point.c 4.1 (Berkeley) %G%";
#endif
extern vti;
extern xnow,ynow;
point(xi,yi){
struct {char pad,c; int x,y;} p;
p.c = 2;
p.x = xnow = xsc(xi);
p.y = ynow = ysc(yi);
write(vti,&p.c,5);
}