xref: /csrg-svn/lib/libplot/t300s/box.c (revision 61403)
148522Sbostic /*-
2*61403Sbostic  * Copyright (c) 1983, 1993
3*61403Sbostic  *	The Regents of the University of California.  All rights reserved.
448522Sbostic  *
548522Sbostic  * %sccs.include.proprietary.c%
648522Sbostic  */
748522Sbostic 
813327Ssam #ifndef lint
9*61403Sbostic static char sccsid[] = "@(#)box.c	8.1 (Berkeley) 06/04/93";
1048522Sbostic #endif /* not lint */
1113327Ssam 
box(x0,y0,x1,y1)1213327Ssam box(x0, y0, x1, y1)
1313327Ssam {
1413327Ssam 	move(x0, y0);
1513327Ssam 	cont(x0, y1);
1613327Ssam 	cont(x1, y1);
1713327Ssam 	cont(x1, y0);
1813327Ssam 	cont(x0, y0);
1913327Ssam 	move(x1, y1);
2013327Ssam }
21