fix "printf("%4.1f\n", (double)0.0);"
[unix-history] / usr / src / lib / libplot / plot / space.c
CommitLineData
3a7806cf
SL
1#ifndef lint
2static char sccsid[] = "@(#)space.c 4.1 (Berkeley) %G%";
3#endif
4
5#include <stdio.h>
6space(x0,y0,x1,y1){
7 putc('s',stdout);
8 putsi(x0);
9 putsi(y0);
10 putsi(x1);
11 putsi(y1);
12}