1*22613Sdist /* 2*22613Sdist * Copyright (c) 1980 Regents of the University of California. 3*22613Sdist * All rights reserved. The Berkeley software License Agreement 4*22613Sdist * specifies the terms and conditions for redistribution. 5*22613Sdist */ 6*22613Sdist 717610Sjak #ifndef lint 8*22613Sdist static char sccsid[] = "@(#)box.c 5.1 (Berkeley) 06/07/85"; 9*22613Sdist #endif not lint 1017610Sjak 1117610Sjak box(x0, y0, x1, y1) 1217610Sjak { 1317610Sjak move(x0, y0); 1417610Sjak cont(x0, y1); 1517610Sjak cont(x1, y1); 1617610Sjak cont(x1, y0); 1717610Sjak cont(x0, y0); 1817610Sjak move(x1, y1); 1917610Sjak } 20