148526Sbostic /*-
2*61414Sbostic * Copyright (c) 1983, 1993
3*61414Sbostic * The Regents of the University of California. All rights reserved.
448526Sbostic *
548526Sbostic * %sccs.include.proprietary.c%
648526Sbostic */
748526Sbostic
813377Ssam #ifndef lint
9*61414Sbostic static char sccsid[] = "@(#)arc.c 8.1 (Berkeley) 06/04/93";
1048526Sbostic #endif /* not lint */
1113377Ssam
1213377Ssam extern vti;
arc(xi,yi,x0,y0,x1,y1)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