xref: /csrg-svn/lib/libplot/t450/box.c (revision 61410)
148525Sbostic /*-
2*61410Sbostic  * Copyright (c) 1983, 1993
3*61410Sbostic  *	The Regents of the University of California.  All rights reserved.
448525Sbostic  *
548525Sbostic  * %sccs.include.proprietary.c%
648525Sbostic  */
748525Sbostic 
813361Ssam #ifndef lint
9*61410Sbostic static char sccsid[] = "@(#)box.c	8.1 (Berkeley) 06/04/93";
1048525Sbostic #endif /* not lint */
1113361Ssam 
box(x0,y0,x1,y1)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