1*48520Sbostic /*- 2*48520Sbostic * Copyright (c) 1983 The Regents of the University of California. 3*48520Sbostic * All rights reserved. 4*48520Sbostic * 5*48520Sbostic * %sccs.include.proprietary.c% 6*48520Sbostic */ 7*48520Sbostic 813396Ssam #ifndef lint 9*48520Sbostic static char sccsid[] = "@(#)box.c 4.2 (Berkeley) 04/22/91"; 10*48520Sbostic #endif /* not lint */ 1113396Ssam 1213396Ssam box(x0, y0, x1, y1) 1313396Ssam { 1413396Ssam move(x0, y0); 1513396Ssam cont(x0, y1); 1613396Ssam cont(x1, y1); 1713396Ssam cont(x1, y0); 1813396Ssam cont(x0, y0); 1913396Ssam move(x1, y1); 2013396Ssam } 21