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