xref: /csrg-svn/lib/libplot/hp7221/box.c (revision 48518)
1*48518Sbostic /*-
2*48518Sbostic  * Copyright (c) 1980 The Regents of the University of California.
3*48518Sbostic  * All rights reserved.
4*48518Sbostic  *
5*48518Sbostic  * %sccs.include.proprietary.c%
619978Sdist  */
719978Sdist 
815464Sralph #ifndef lint
9*48518Sbostic static char sccsid[] = "@(#)box.c	5.2 (Berkeley) 04/22/91";
10*48518Sbostic #endif /* not lint */
1115464Sralph 
1215464Sralph box(x0, y0, x1, y1)
1315464Sralph {
1415464Sralph 	move(x0, y0);
1515464Sralph 	cont(x0, y1);
1615464Sralph 	cont(x1, y1);
1715464Sralph 	cont(x1, y0);
1815464Sralph 	cont(x0, y0);
1915464Sralph 	move(x1, y1);
2015464Sralph }
21