148523Sbostic /*-
2*61403Sbostic * Copyright (c) 1985, 1993
3*61403Sbostic * The Regents of the University of California. All rights reserved.
448523Sbostic *
548523Sbostic * %sccs.include.proprietary.c%
622613Sdist */
722613Sdist
817610Sjak #ifndef lint
9*61403Sbostic static char sccsid[] = "@(#)box.c 8.1 (Berkeley) 06/04/93";
1048523Sbostic #endif /* not lint */
1117610Sjak
box(x0,y0,x1,y1)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