xref: /csrg-svn/lib/libplot/t300/box.c (revision 48521)
1*48521Sbostic /*-
2*48521Sbostic  * Copyright (c) 1983 The Regents of the University of California.
3*48521Sbostic  * All rights reserved.
4*48521Sbostic  *
5*48521Sbostic  * %sccs.include.proprietary.c%
6*48521Sbostic  */
7*48521Sbostic 
813309Ssam #ifndef lint
9*48521Sbostic static char sccsid[] = "@(#)box.c	4.2 (Berkeley) 04/22/91";
10*48521Sbostic #endif /* not lint */
1113309Ssam 
1213309Ssam box(x0, y0, x1, y1)
1313309Ssam {
1413309Ssam 	move(x0, y0);
1513309Ssam 	cont(x0, y1);
1613309Ssam 	cont(x1, y1);
1713309Ssam 	cont(x1, y0);
1813309Ssam 	cont(x0, y0);
1913309Ssam 	move(x1, y1);
2013309Ssam }
21