diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-01-26 18:30:12 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-01-26 18:30:12 +0000 |
commit | a528dc7071ae9679618c6fddda7b5312412efea9 (patch) | |
tree | f6abe014a5ca396d18f159f3a6c9fdfe83eae73e /coreutils/ls.c | |
parent | 1e4b957ac333802215b2a783a4860132c4f4f131 (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.c | 2 |
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; |