xref: /csrg-svn/lib/libplot/t300s/point.c (revision 48522)
1*48522Sbostic /*-
2*48522Sbostic  * Copyright (c) 1983 The Regents of the University of California.
3*48522Sbostic  * All rights reserved.
4*48522Sbostic  *
5*48522Sbostic  * %sccs.include.proprietary.c%
6*48522Sbostic  */
7*48522Sbostic 
813337Ssam #ifndef lint
9*48522Sbostic static char sccsid[] = "@(#)point.c	4.2 (Berkeley) 04/22/91";
10*48522Sbostic #endif /* not lint */
1113337Ssam 
1213337Ssam #include "con.h"
1313337Ssam point(xi,yi){
1413337Ssam 		move(xi,yi);
1513337Ssam 		label(".");
1613337Ssam 		return;
1713337Ssam }
18