reset goes back to machine dependent
[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);
}