date and time created 85/01/02 20:29:46 by jak
[unix-history] / usr / src / lib / libplot / plot / point.c
CommitLineData
e9a99771
SL
1#ifndef lint
2static char sccsid[] = "@(#)point.c 4.1 (Berkeley) %G%";
3#endif
4
5#include <stdio.h>
6point(xi,yi){
7 putc('p',stdout);
8 putsi(xi);
9 putsi(yi);
10}