xref: /csrg-svn/lib/libplot/bitgraph/point.c (revision 19848)
1 #ifndef lint
2 static char sccsid[] = "@(#)point.c	4.1 (Berkeley) 11/10/83";
3 #endif
4 
5 point(xi, yi)
6 int xi, yi;
7 {
8 	move(xi, yi);
9 	label(".");
10 }
11