1*19975Sdist /* 2*19975Sdist * Copyright (c) 1980 Regents of the University of California. 3*19975Sdist * All rights reserved. The Berkeley software License Agreement 4*19975Sdist * specifies the terms and conditions for redistribution. 5*19975Sdist */ 6*19975Sdist 715460Sralph #ifndef lint 8*19975Sdist static char sccsid[] = "@(#)box.c 5.1 (Berkeley) 05/07/85"; 9*19975Sdist #endif not lint 1015460Sralph 1115460Sralph box(x0, y0, x1, y1) 1215460Sralph { 1315460Sralph move(x0, y0); 1415460Sralph cont(x0, y1); 1515460Sralph cont(x1, y1); 1615460Sralph cont(x1, y0); 1715460Sralph cont(x0, y0); 1815460Sralph move(x1, y1); 1915460Sralph } 20