BSD 4_4 release
[unix-history] / usr / src / lib / libplot / bitgraph / circle.c
CommitLineData
de207c0f 1/*-
56f0aac0
KB
2 * Copyright (c) 1980, 1993
3 * The Regents of the University of California. All rights reserved.
de207c0f 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).
66c27cd0
DF
8 */
9
0c5fa229 10#ifndef lint
ad787160 11static char sccsid[] = "@(#)circle.c 8.1 (Berkeley) 6/4/93";
de207c0f 12#endif /* not lint */
0c5fa229
RC
13
14circle (xc,yc,r)
15int xc,yc,r;
16{
17 arc(xc,yc, xc+r,yc, xc-r,yc);
18 arc(xc,yc, xc-r,yc, xc+r,yc);
19}