xref: /csrg-svn/lib/libplot/hp2648/box.c (revision 48517)
1*48517Sbostic /*-
2*48517Sbostic  * Copyright (c) 1980 The Regents of the University of California.
3*48517Sbostic  * All rights reserved.
4*48517Sbostic  *
5*48517Sbostic  * %sccs.include.proprietary.c%
619975Sdist  */
719975Sdist 
815460Sralph #ifndef lint
9*48517Sbostic static char sccsid[] = "@(#)box.c	5.2 (Berkeley) 04/22/91";
10*48517Sbostic #endif /* not lint */
1115460Sralph 
1215460Sralph box(x0, y0, x1, y1)
1315460Sralph {
1415460Sralph 	move(x0, y0);
1515460Sralph 	cont(x0, y1);
1615460Sralph 	cont(x1, y1);
1715460Sralph 	cont(x1, y0);
1815460Sralph 	cont(x0, y0);
1915460Sralph 	move(x1, y1);
2015460Sralph }
21