fix "printf("%4.1f\n", (double)0.0);"
[unix-history] / usr / src / lib / libplot / plot / point.c
#ifndef lint
static char sccsid[] = "@(#)point.c 4.1 (Berkeley) %G%";
#endif
#include <stdio.h>
point(xi,yi){
putc('p',stdout);
putsi(xi);
putsi(yi);
}