xref: /csrg-svn/lib/libplot/t4013/box.c (revision 48523)
1*48523Sbostic /*-
2*48523Sbostic  * Copyright (c) 1985 The Regents of the University of California.
3*48523Sbostic  * All rights reserved.
4*48523Sbostic  *
5*48523Sbostic  * %sccs.include.proprietary.c%
622613Sdist  */
722613Sdist 
817610Sjak #ifndef lint
9*48523Sbostic static char sccsid[] = "@(#)box.c	5.2 (Berkeley) 04/22/91";
10*48523Sbostic #endif /* not lint */
1117610Sjak 
1217610Sjak box(x0, y0, x1, y1)
1317610Sjak {
1417610Sjak 	move(x0, y0);
1517610Sjak 	cont(x0, y1);
1617610Sjak 	cont(x1, y1);
1717610Sjak 	cont(x1, y0);
1817610Sjak 	cont(x0, y0);
1917610Sjak 	move(x1, y1);
2017610Sjak }
21