148504Sbostic /*-
2*61330Sbostic * Copyright (c) 1980, 1993
3*61330Sbostic * The Regents of the University of California. All rights reserved.
448504Sbostic *
548504Sbostic * %sccs.include.proprietary.c%
619851Sdist */
719851Sdist
815411Sralph #ifndef lint
9*61330Sbostic static char sccsid[] = "@(#)box.c 8.1 (Berkeley) 06/04/93";
1048504Sbostic #endif /* not lint */
1115411Sralph
box(x0,y0,x1,y1)1215411Sralph box(x0, y0, x1, y1)
1315411Sralph {
1415411Sralph move(x0, y0);
1515411Sralph cont(x0, y1);
1615411Sralph cont(x1, y1);
1715411Sralph cont(x1, y0);
1815411Sralph cont(x0, y0);
1915411Sralph move(x1, y1);
2015411Sralph }
21