148505Sbostic /*-
2*61340Sbostic * Copyright (c) 1980, 1993
3*61340Sbostic * The Regents of the University of California. All rights reserved.
448505Sbostic *
548505Sbostic * %sccs.include.proprietary.c%
619971Sdist */
719971Sdist
815428Sralph #ifndef lint
9*61340Sbostic static char sccsid[] = "@(#)box.c 8.1 (Berkeley) 06/04/93";
1048505Sbostic #endif /* not lint */
1115428Sralph
box(x0,y0,x1,y1)1215428Sralph box(x0, y0, x1, y1)
1315428Sralph {
1415428Sralph move(x0, y0);
1515428Sralph cont(x0, y1);
1615428Sralph cont(x1, y1);
1715428Sralph cont(x1, y0);
1815428Sralph cont(x0, y0);
1915428Sralph move(x1, y1);
2015428Sralph }
21