1*48520Sbostic /*- 2*48520Sbostic * Copyright (c) 1983 The Regents of the University of California. 3*48520Sbostic * All rights reserved. 4*48520Sbostic * 5*48520Sbostic * %sccs.include.proprietary.c% 6*48520Sbostic */ 7*48520Sbostic 813400Ssam #ifndef lint 9*48520Sbostic static char sccsid[] = "@(#)dot.c 4.2 (Berkeley) 04/22/91"; 10*48520Sbostic #endif /* not lint */ 1113400Ssam 1213400Ssam #include <stdio.h> 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