new copyright notice
[unix-history] / usr / src / lib / libplot / t4013 / circle.c
CommitLineData
b059c7be
DF
1/*
2 * Copyright (c) 1980 Regents of the University of California.
3 * All rights reserved. The Berkeley software License Agreement
4 * specifies the terms and conditions for redistribution.
5 */
6
aef1a7fc 7#ifndef lint
b059c7be
DF
8static char sccsid[] = "@(#)circle.c 5.1 (Berkeley) %G%";
9#endif not lint
aef1a7fc
JK
10
11circle(x,y,r){
12 arc(x,y,x+r,y,x+r,y);
13}