148502Sbostic /*-
2*61325Sbostic * Copyright (c) 1983, 1993
3*61325Sbostic * The Regents of the University of California. All rights reserved.
448502Sbostic *
548502Sbostic * %sccs.include.proprietary.c%
648502Sbostic */
748502Sbostic
815513Sralph #ifndef lint
9*61325Sbostic static char sccsid[] = "@(#)box.c 8.1 (Berkeley) 06/04/93";
1048502Sbostic #endif /* not lint */
1115513Sralph
box(x0,y0,x1,y1)1215513Sralph box(x0, y0, x1, y1)
1315513Sralph {
1415513Sralph move(x0, y0);
1515513Sralph cont(x0, y1);
1615513Sralph cont(x1, y1);
1715513Sralph cont(x1, y0);
1815513Sralph cont(x0, y0);
1915513Sralph move(x1, y1);
2015513Sralph }
21