148526Sbostic /*-
2*61414Sbostic * Copyright (c) 1983, 1993
3*61414Sbostic * The Regents of the University of California. All rights reserved.
448526Sbostic *
548526Sbostic * %sccs.include.proprietary.c%
648526Sbostic */
748526Sbostic
813378Ssam #ifndef lint
9*61414Sbostic static char sccsid[] = "@(#)box.c 8.1 (Berkeley) 06/04/93";
1048526Sbostic #endif /* not lint */
1113378Ssam
box(x0,y0,x1,y1)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