148524Sbostic /*-
2*62557Sbostic * Copyright (c) 1983, 1993
3*62557Sbostic * The Regents of the University of California. All rights reserved.
448524Sbostic *
548524Sbostic * %sccs.include.proprietary.c%
648524Sbostic */
748524Sbostic
813343Ssam #ifndef lint
9*62557Sbostic static char sccsid[] = "@(#)box.c 8.1 (Berkeley) 06/07/93";
1048524Sbostic #endif /* not lint */
1113343Ssam
box(x0,y0,x1,y1)1213343Ssam box(x0, y0, x1, y1)
1313343Ssam {
1413343Ssam move(x0, y0);
1513343Ssam cont(x0, y1);
1613343Ssam cont(x1, y1);
1713343Ssam cont(x1, y0);
1813343Ssam cont(x0, y0);
1913343Ssam move(x1, y1);
2013343Ssam }
21