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