xref: /csrg-svn/lib/libplot/t300/box.c (revision 13309)
1*13309Ssam #ifndef lint
2*13309Ssam static char sccsid[] = "@(#)box.c	4.1 (Berkeley) 06/27/83";
3*13309Ssam #endif
4*13309Ssam 
5*13309Ssam box(x0, y0, x1, y1)
6*13309Ssam {
7*13309Ssam 	move(x0, y0);
8*13309Ssam 	cont(x0, y1);
9*13309Ssam 	cont(x1, y1);
10*13309Ssam 	cont(x1, y0);
11*13309Ssam 	cont(x0, y0);
12*13309Ssam 	move(x1, y1);
13*13309Ssam }
14