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