xref: /csrg-svn/lib/libplot/bitgraph/box.c (revision 19851)
1*19851Sdist /*
2*19851Sdist  * Copyright (c) 1980 Regents of the University of California.
3*19851Sdist  * All rights reserved.  The Berkeley software License Agreement
4*19851Sdist  * specifies the terms and conditions for redistribution.
5*19851Sdist  */
6*19851Sdist 
715411Sralph #ifndef lint
8*19851Sdist static char sccsid[] = "@(#)box.c	5.2 (Berkeley) 04/30/85";
9*19851Sdist #endif not lint
1015411Sralph 
11*19851Sdist 
1215411Sralph box(x0, y0, x1, y1)
1315411Sralph {
1415411Sralph 	move(x0, y0);
1515411Sralph 	cont(x0, y1);
1615411Sralph 	cont(x1, y1);
1715411Sralph 	cont(x1, y0);
1815411Sralph 	cont(x0, y0);
1915411Sralph 	move(x1, y1);
2015411Sralph }
21