Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-01-26 21:30:12 +0300
committerEric Andersen <andersen@codepoet.org>2001-01-26 21:30:12 +0300
commita528dc7071ae9679618c6fddda7b5312412efea9 (patch)
treef6abe014a5ca396d18f159f3a6c9fdfe83eae73e /coreutils/ls.c
parent1e4b957ac333802215b2a783a4860132c4f4f131 (diff)
Fix my braindamage -- remove termios and sighandling since they are not
needed at all. My bad. -Erik
Diffstat (limited to 'coreutils/ls.c')
-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;