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