xref: /csrg-svn/lib/libplot/imagen/box.c (revision 48519)
1*48519Sbostic /*-
2*48519Sbostic  * Copyright (c) 1985 The Regents of the University of California.
3*48519Sbostic  * All rights reserved.
4*48519Sbostic  *
5*48519Sbostic  * %sccs.include.proprietary.c%
624990Ssam  */
724990Ssam 
824990Ssam #ifndef lint
9*48519Sbostic static char sccsid[] = "@(#)box.c	5.2 (Berkeley) 04/22/91";
10*48519Sbostic #endif /* not lint */
1124990Ssam 
1224990Ssam box(x0, y0, x1, y1)
1324990Ssam {
1424990Ssam 	move(x0, y0);
1524990Ssam 	cont(x0, y1);
1624990Ssam 	cont(x1, y1);
1724990Ssam 	cont(x1, y0);
1824990Ssam 	cont(x0, y0);
1924990Ssam 	move(x1, y1);
2024990Ssam }
21