xref: /csrg-svn/lib/libplot/bitgraph/point.c (revision 61334)
148504Sbostic /*-
2*61334Sbostic  * Copyright (c) 1980, 1993
3*61334Sbostic  *	The Regents of the University of California.  All rights reserved.
448504Sbostic  *
548504Sbostic  * %sccs.include.proprietary.c%
619851Sdist  */
719851Sdist 
815422Sralph #ifndef lint
9*61334Sbostic static char sccsid[] = "@(#)point.c	8.1 (Berkeley) 06/04/93";
1048504Sbostic #endif /* not lint */
1115422Sralph 
point(xi,yi)1215422Sralph point(xi, yi)
1315422Sralph int xi, yi;
1415422Sralph {
1515422Sralph 	move(xi, yi);
1615422Sralph 	label(".");
1715422Sralph }
18