date and time created 85/01/02 20:29:46 by jak
[unix-history] / usr / src / lib / libplot / plot / dot.c
#ifndef lint
static char sccsid[] = "@(#)dot.c 4.1 (Berkeley) %G%";
#endif
#include <stdio.h>
dot(xi,yi,dx,n,pat)
int pat[];
{
int i;
putc('d',stdout);
putsi(xi);
putsi(yi);
putsi(dx);
putsi(n);
for(i=0; i<n; i++)putsi(pat[i]);
}