BSD 4_4 release
[unix-history] / usr / src / lib / libplot / vt0 / circle.c
CommitLineData
e7e40a84 1/*-
63b21a88
KB
2 * Copyright (c) 1983, 1993
3 * The Regents of the University of California. All rights reserved.
e7e40a84 4 *
ad787160
C
5 * This module is believed to contain source code proprietary to AT&T.
6 * Use and redistribution is subject to the Berkeley Software License
7 * Agreement and your Software Agreement with AT&T (Western Electric).
e7e40a84
KB
8 */
9
f3a236cf 10#ifndef lint
ad787160 11static char sccsid[] = "@(#)circle.c 8.1 (Berkeley) 6/4/93";
e7e40a84 12#endif /* not lint */
f3a236cf
SL
13
14extern vti;
15circle(x,y,r){
16 char c;
17 c = 5;
18 write(vti,&c,1);
19 write(vti,&x,6);
20}