xref: /csrg-svn/lib/libplot/aed/box.c (revision 48502)
1*48502Sbostic /*-
2*48502Sbostic  * Copyright (c) 1983 The Regents of the University of California.
3*48502Sbostic  * All rights reserved.
4*48502Sbostic  *
5*48502Sbostic  * %sccs.include.proprietary.c%
6*48502Sbostic  */
7*48502Sbostic 
815513Sralph #ifndef lint
9*48502Sbostic static char sccsid[] = "@(#)box.c	5.2 (Berkeley) 04/22/91";
10*48502Sbostic #endif /* not lint */
1115513Sralph 
1215513Sralph box(x0, y0, x1, y1)
1315513Sralph {
1415513Sralph 	move(x0, y0);
1515513Sralph 	cont(x0, y1);
1615513Sralph 	cont(x1, y1);
1715513Sralph 	cont(x1, y0);
1815513Sralph 	cont(x0, y0);
1915513Sralph 	move(x1, y1);
2015513Sralph }
21