xref: /original-bsd/lib/libplot/hp2648/point.c (revision f82e54c4)
1 #ifndef lint
2 static char sccsid[] = "@(#)point.c	4.1 (Berkeley) 11/10/83";
3 #endif
4 
5 #include "hp2648.h"
6 
7 point(xi,yi)
8 int xi,yi;
9 {
10 	if(xsc(xi)!=currentx || ysc(yi)!=currenty)
11 		move(xi,yi);
12 	buffready(1);
13 	putchar('d');
14 }
15