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