aboutsummaryrefslogtreecommitdiff
path: root/coreutils
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-01-26 18:30:12 +0000
committerEric Andersen <andersen@codepoet.org>2001-01-26 18:30:12 +0000
commita528dc7071ae9679618c6fddda7b5312412efea9 (patch)
treef6abe014a5ca396d18f159f3a6c9fdfe83eae73e /coreutils
parent1e4b957ac333802215b2a783a4860132c4f4f131 (diff)
downloadbusybox-a528dc7071ae9679618c6fddda7b5312412efea9.tar.gz
Fix my braindamage -- remove termios and sighandling since they are not
needed at all. My bad. -Erik
Diffstat (limited to 'coreutils')
-rw-r--r--coreutils/ls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/ls.c b/coreutils/ls.c
index e4b8f69a3..4b225d6f8 100644
--- a/coreutils/ls.c
+++ b/coreutils/ls.c
@@ -176,7 +176,7 @@ static unsigned short terminal_width;
static unsigned short column_width;
static unsigned short tabstops;
#else
-# define column_width COLUMN_WIDTH
+static unsigned short column_width = COLUMN_WIDTH;
#endif
static int status = EXIT_SUCCESS;