summaryrefslogtreecommitdiff
path: root/usr/src/ucbcmd/plot/libplot/bitgraph/box.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr/src/ucbcmd/plot/libplot/bitgraph/box.c')
-rw-r--r--usr/src/ucbcmd/plot/libplot/bitgraph/box.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/usr/src/ucbcmd/plot/libplot/bitgraph/box.c b/usr/src/ucbcmd/plot/libplot/bitgraph/box.c
deleted file mode 100644
index 57b9a92f88..0000000000
--- a/usr/src/ucbcmd/plot/libplot/bitgraph/box.c
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * 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 */
-
-/*
- * Copyright (c) 1980 Regents of the University of California.
- * All rights reserved. The Berkeley software License Agreement
- * specifies the terms and conditions for redistribution.
- */
-
-#pragma ident "%Z%%M% %I% %E% SMI"
-
-void
-box(int x0, int y0, int x1, int y1)
-{
- move(x0, y0);
- cont(x0, y1);
- cont(x1, y1);
- cont(x1, y0);
- cont(x0, y0);
- move(x1, y1);
-}