From: Eric Andersen Date: Fri, 26 Jan 2001 18:30:12 +0000 (-0000) Subject: Fix my braindamage -- remove termios and sighandling since they are not X-Git-Tag: 0_49~8 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=a528dc7071ae9679618c6fddda7b5312412efea9;p=oweals%2Fbusybox.git Fix my braindamage -- remove termios and sighandling since they are not needed at all. My bad. -Erik --- 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; diff --git a/ls.c b/ls.c index e4b8f69a3..4b225d6f8 100644 --- a/ls.c +++ b/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;