xref: /original-bsd/lib/libplot/f77plot/box.c (revision c374ae69)
1 #ifndef lint
2 static char sccsid[] = "@(#)box.c	1.1 (Berkeley) 01/02/85";
3 #endif
4 box_(x0, y0, x1, y1)
5 int *x0, *y0, *x1, *y1;
6 {
7 	box(*x0, *y0, *x1, *y1);
8 }
9