box.c revision b7d62af5b42f0da2eb668e8d33d24d2f4fdd98a8
2N/A/*
2N/A * Copyright 2005 Sun Microsystems, Inc. All rights reserved.
2N/A * Use is subject to license terms.
2N/A */
2N/A
2N/A/* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
2N/A/* All Rights Reserved */
2N/A
2N/A/*
2N/A * Copyright (c) 1980 Regents of the University of California.
2N/A * All rights reserved. The Berkeley software License Agreement
2N/A * specifies the terms and conditions for redistribution.
2N/A */
2N/A
2N/A#pragma ident "%Z%%M% %I% %E% SMI"
2N/A
2N/Avoid
2N/Abox(int x0, int y0, int x1, int y1)
2N/A{
2N/A move(x0, y0);
2N/A cont(x0, y1);
2N/A cont(x1, y1);
2N/A cont(x1, y0);
2N/A cont(x0, y0);
2N/A move(x1, y1);
2N/A}
2N/A