1*22614Sdist /* 2*22614Sdist * Copyright (c) 1980 Regents of the University of California. 3*22614Sdist * All rights reserved. The Berkeley software License Agreement 4*22614Sdist * specifies the terms and conditions for redistribution. 5*22614Sdist */ 6*22614Sdist 717611Sjak #ifndef lint 8*22614Sdist static char sccsid[] = "@(#)circle.c 5.1 (Berkeley) 06/07/85"; 9*22614Sdist #endif not lint 1017611Sjak 1117611Sjak circle(x,y,r){ 1217611Sjak arc(x,y,x+r,y,x+r,y); 1317611Sjak } 14