From a528dc7071ae9679618c6fddda7b5312412efea9 Mon Sep 17 00:00:00 2001
From: Eric Andersen <andersen@codepoet.org>
Date: Fri, 26 Jan 2001 18:30:12 +0000
Subject: Fix my braindamage -- remove termios and sighandling since they are
 not needed at all.  My bad.  -Erik

---
 coreutils/ls.c | 2 +-
 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;
 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;
-- 
cgit v1.2.3-55-g6feb