xref: /csrg-svn/lib/libplot/t450/box.c (revision 48525)
1*48525Sbostic /*-
2*48525Sbostic  * Copyright (c) 1983 The Regents of the University of California.
3*48525Sbostic  * All rights reserved.
4*48525Sbostic  *
5*48525Sbostic  * %sccs.include.proprietary.c%
6*48525Sbostic  */
7*48525Sbostic 
813361Ssam #ifndef lint
9*48525Sbostic static char sccsid[] = "@(#)box.c	4.2 (Berkeley) 04/22/91";
10*48525Sbostic #endif /* not lint */
1113361Ssam 
1213361Ssam box(x0, y0, x1, y1)
1313361Ssam {
1413361Ssam 	move(x0, y0);
1513361Ssam 	cont(x0, y1);
1613361Ssam 	cont(x1, y1);
1713361Ssam 	cont(x1, y0);
1813361Ssam 	cont(x0, y0);
1913361Ssam 	move(x1, y1);
2013361Ssam }
21