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