148520Sbostic /*-
2*61399Sbostic * Copyright (c) 1983, 1993
3*61399Sbostic * The Regents of the University of California. All rights reserved.
448520Sbostic *
548520Sbostic * %sccs.include.proprietary.c%
648520Sbostic */
748520Sbostic
813396Ssam #ifndef lint
9*61399Sbostic static char sccsid[] = "@(#)box.c 8.1 (Berkeley) 06/04/93";
1048520Sbostic #endif /* not lint */
1113396Ssam
box(x0,y0,x1,y1)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