fix "printf("%4.1f\n", (double)0.0);"
[unix-history] / usr / src / lib / libplot / plot / dot.c
CommitLineData
76001dbd
SL
1#ifndef lint
2static char sccsid[] = "@(#)dot.c 4.1 (Berkeley) %G%";
3#endif
4
5#include <stdio.h>
6dot(xi,yi,dx,n,pat)
7int 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}