xref: /csrg-svn/lib/libplot/t300s/point.c (revision 61403)
148522Sbostic /*-
2*61403Sbostic  * Copyright (c) 1983, 1993
3*61403Sbostic  *	The Regents of the University of California.  All rights reserved.
448522Sbostic  *
548522Sbostic  * %sccs.include.proprietary.c%
648522Sbostic  */
748522Sbostic 
813337Ssam #ifndef lint
9*61403Sbostic static char sccsid[] = "@(#)point.c	8.1 (Berkeley) 06/04/93";
1048522Sbostic #endif /* not lint */
1113337Ssam 
1213337Ssam #include "con.h"
point(xi,yi)1313337Ssam point(xi,yi){
1413337Ssam 		move(xi,yi);
1513337Ssam 		label(".");
1613337Ssam 		return;
1713337Ssam }
18