1*48511Sbostic /*- 2*48511Sbostic * Copyright (c) 1980, 1986 The Regents of the University of California. 3*48511Sbostic * All rights reserved. 4*48511Sbostic * 5*48511Sbostic * %sccs.include.proprietary.c% 629806Ssklower */ 729806Ssklower 829806Ssklower #ifndef lint 9*48511Sbostic static char sccsid[] = "@(#)box.c 6.2 (Berkeley) 04/22/91"; 10*48511Sbostic #endif /* not lint */ 1129806Ssklower 1229806Ssklower box(x0, y0, x1, y1) 1329806Ssklower { 1429806Ssklower move(x0, y0); 1529806Ssklower cont(x0, y1); 1629806Ssklower cont(x1, y1); 1729806Ssklower cont(x1, y0); 1829806Ssklower cont(x0, y0); 1929806Ssklower move(x1, y1); 2029806Ssklower } 21