xref: /csrg-svn/lib/libplot/vt0/circle.c (revision 61414)
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 
813379Ssam #ifndef lint
9*61414Sbostic static char sccsid[] = "@(#)circle.c	8.1 (Berkeley) 06/04/93";
1048526Sbostic #endif /* not lint */
1113379Ssam 
1213379Ssam extern vti;
circle(x,y,r)1313379Ssam circle(x,y,r){
1413379Ssam 	char c;
1513379Ssam 	c = 5;
1613379Ssam 	write(vti,&c,1);
1713379Ssam 	write(vti,&x,6);
1813379Ssam }
19