1*48526Sbostic /*- 2*48526Sbostic * Copyright (c) 1983 The Regents of the University of California. 3*48526Sbostic * All rights reserved. 4*48526Sbostic * 5*48526Sbostic * %sccs.include.proprietary.c% 6*48526Sbostic */ 7*48526Sbostic 813377Ssam #ifndef lint 9*48526Sbostic static char sccsid[] = "@(#)arc.c 4.2 (Berkeley) 04/22/91"; 10*48526Sbostic #endif /* not lint */ 1113377Ssam 1213377Ssam extern vti; 1313377Ssam arc(xi,yi,x0,y0,x1,y1){ 1413377Ssam char c; 1513377Ssam c = 6; 1613377Ssam write(vti,&c,1); 1713377Ssam write(vti,&xi,12); 1813377Ssam } 19