diff options
Diffstat (limited to 'usr/src/ucbcmd/plot/libplot/t450/box.c')
-rw-r--r-- | usr/src/ucbcmd/plot/libplot/t450/box.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/usr/src/ucbcmd/plot/libplot/t450/box.c b/usr/src/ucbcmd/plot/libplot/t450/box.c index 190476f237..e6ec1533c2 100644 --- a/usr/src/ucbcmd/plot/libplot/t450/box.c +++ b/usr/src/ucbcmd/plot/libplot/t450/box.c @@ -19,18 +19,18 @@ * * CDDL HEADER END */ +/* + * Copyright 2005 Sun Microsystems, Inc. All rights reserved. + * Use is subject to license terms. + */ + /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */ /* All Rights Reserved */ +#pragma ident "%Z%%M% %I% %E% SMI" -#ident "%Z%%M% %I% %E% SMI" /* SVr4.0 1.1 */ - -/* - * Copyright (c) 1983, 1984 1985, 1986, 1987, 1988, Sun Microsystems, Inc. - * All Rights Reserved. - */ - -box(x0, y0, x1, y1) +void +box(int x0, int y0, int x1, int y1) { move(x0, y0); cont(x0, y1); |