xref: /original-bsd/lib/libplot/plot/dot.c (revision 7e7b101a)
1 #ifndef lint
2 static char sccsid[] = "@(#)dot.c	4.1 (Berkeley) 06/27/83";
3 #endif
4 
5 #include <stdio.h>
6 dot(xi,yi,dx,n,pat)
7 int  pat[];
8 {
9 	int i;
10 	putc('d',stdout);
11 	putsi(xi);
12 	putsi(yi);
13 	putsi(dx);
14 	putsi(n);
15 	for(i=0; i<n; i++)putsi(pat[i]);
16 }
17