aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-01-26 18:30:12 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-01-26 18:30:12 +0000
commitcde3ce09e3016108520fbad12595c3ceef1131d4 (patch)
treef6abe014a5ca396d18f159f3a6c9fdfe83eae73e
parent5641b8c2b0d61a2a731fed115db517d320b3a207 (diff)
downloadbusybox-w32-cde3ce09e3016108520fbad12595c3ceef1131d4.tar.gz
busybox-w32-cde3ce09e3016108520fbad12595c3ceef1131d4.tar.bz2
busybox-w32-cde3ce09e3016108520fbad12595c3ceef1131d4.zip
Fix my braindamage -- remove termios and sighandling since they are not
needed at all. My bad. -Erik git-svn-id: svn://busybox.net/trunk/busybox@1682 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--coreutils/ls.c2
-rw-r--r--ls.c2
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;
176static unsigned short column_width; 176static unsigned short column_width;
177static unsigned short tabstops; 177static unsigned short tabstops;
178#else 178#else
179# define column_width COLUMN_WIDTH 179static unsigned short column_width = COLUMN_WIDTH;
180#endif 180#endif
181 181
182static int status = EXIT_SUCCESS; 182static 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;
176static unsigned short column_width; 176static unsigned short column_width;
177static unsigned short tabstops; 177static unsigned short tabstops;
178#else 178#else
179# define column_width COLUMN_WIDTH 179static unsigned short column_width = COLUMN_WIDTH;
180#endif 180#endif
181 181
182static int status = EXIT_SUCCESS; 182static int status = EXIT_SUCCESS;