xref: /csrg-svn/lib/libplot/grn/box.c (revision 61389)
148511Sbostic /*-
2*61389Sbostic  * Copyright (c) 1980, 1986, 1993
3*61389Sbostic  *	The Regents of the University of California.  All rights reserved.
448511Sbostic  *
548511Sbostic  * %sccs.include.proprietary.c%
629806Ssklower  */
729806Ssklower 
829806Ssklower #ifndef lint
9*61389Sbostic static char sccsid[] = "@(#)box.c	8.1 (Berkeley) 06/04/93";
1048511Sbostic #endif /* not lint */
1129806Ssklower 
box(x0,y0,x1,y1)1229806Ssklower box(x0, y0, x1, y1)
1329806Ssklower {
1429806Ssklower 	move(x0, y0);
1529806Ssklower 	cont(x0, y1);
1629806Ssklower 	cont(x1, y1);
1729806Ssklower 	cont(x1, y0);
1829806Ssklower 	cont(x0, y0);
1929806Ssklower 	move(x1, y1);
2029806Ssklower }
21