xref: /csrg-svn/lib/libplot/plot/dot.c (revision 61399)
148520Sbostic /*-
2*61399Sbostic  * Copyright (c) 1983, 1993
3*61399Sbostic  *	The Regents of the University of California.  All rights reserved.
448520Sbostic  *
548520Sbostic  * %sccs.include.proprietary.c%
648520Sbostic  */
748520Sbostic 
813400Ssam #ifndef lint
9*61399Sbostic static char sccsid[] = "@(#)dot.c	8.1 (Berkeley) 06/04/93";
1048520Sbostic #endif /* not lint */
1113400Ssam 
1213400Ssam #include <stdio.h>
dot(xi,yi,dx,n,pat)1313400Ssam dot(xi,yi,dx,n,pat)
1413400Ssam int  pat[];
1513400Ssam {
1613400Ssam 	int i;
1713400Ssam 	putc('d',stdout);
1813400Ssam 	putsi(xi);
1913400Ssam 	putsi(yi);
2013400Ssam 	putsi(dx);
2113400Ssam 	putsi(n);
2213400Ssam 	for(i=0; i<n; i++)putsi(pat[i]);
2313400Ssam }
24