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 | |
parent | 1e4b957ac333802215b2a783a4860132c4f4f131 (diff) | |
download | busybox-w32-a528dc7071ae9679618c6fddda7b5312412efea9.tar.gz busybox-w32-a528dc7071ae9679618c6fddda7b5312412efea9.tar.bz2 busybox-w32-a528dc7071ae9679618c6fddda7b5312412efea9.zip |
Fix my braindamage -- remove termios and sighandling since they are not
needed at all. My bad.
-Erik
-rw-r--r-- | coreutils/ls.c | 2 | ||||
-rw-r--r-- | ls.c | 2 |
2 files changed, 2 insertions, 2 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; | |||
176 | static unsigned short column_width; | 176 | static unsigned short column_width; |
177 | static unsigned short tabstops; | 177 | static unsigned short tabstops; |
178 | #else | 178 | #else |
179 | # define column_width COLUMN_WIDTH | 179 | static unsigned short column_width = COLUMN_WIDTH; |
180 | #endif | 180 | #endif |
181 | 181 | ||
182 | static int status = EXIT_SUCCESS; | 182 | static int status = EXIT_SUCCESS; |
@@ -176,7 +176,7 @@ static unsigned short terminal_width; | |||
176 | static unsigned short column_width; | 176 | static unsigned short column_width; |
177 | static unsigned short tabstops; | 177 | static unsigned short tabstops; |
178 | #else | 178 | #else |
179 | # define column_width COLUMN_WIDTH | 179 | static unsigned short column_width = COLUMN_WIDTH; |
180 | #endif | 180 | #endif |
181 | 181 | ||
182 | static int status = EXIT_SUCCESS; | 182 | static int status = EXIT_SUCCESS; |