date and time created 85/01/02 20:29:50 by jak
[unix-history] / usr / src / lib / libplot / hp2648 / point.c
CommitLineData
a5c6620d
RC
1#ifndef lint
2static char sccsid[] = "@(#)point.c 4.1 (Berkeley) %G%";
3#endif
4
5#include "hp2648.h"
6
7point(xi,yi)
8int xi,yi;
9{
10 if(xsc(xi)!=currentx || ysc(yi)!=currenty)
11 move(xi,yi);
12 buffready(1);
13 putchar('d');
14}