1*48526Sbostic /*- 2*48526Sbostic * Copyright (c) 1983 The Regents of the University of California. 3*48526Sbostic * All rights reserved. 4*48526Sbostic * 5*48526Sbostic * %sccs.include.proprietary.c% 6*48526Sbostic */ 7*48526Sbostic 813378Ssam #ifndef lint 9*48526Sbostic static char sccsid[] = "@(#)box.c 4.2 (Berkeley) 04/22/91"; 10*48526Sbostic #endif /* not lint */ 1113378Ssam 1213378Ssam box(x0, y0, x1, y1) 1313378Ssam { 1413378Ssam move(x0, y0); 1513378Ssam cont(x0, y1); 1613378Ssam cont(x1, y1); 1713378Ssam cont(x1, y0); 1813378Ssam cont(x0, y0); 1913378Ssam move(x1, y1); 2013378Ssam } 21