Fix my braindamage -- remove termios and sighandling since they are not
authorEric Andersen <andersen@codepoet.org>
Fri, 26 Jan 2001 18:30:12 +0000 (18:30 -0000)
committerEric Andersen <andersen@codepoet.org>
Fri, 26 Jan 2001 18:30:12 +0000 (18:30 -0000)
needed at all.  My bad.
 -Erik

coreutils/ls.c
ls.c

index e4b8f69a3190526ec0918a9f04a9060f08c343f6..4b225d6f87a2cf118ad706000c16a23adee60f4f 100644 (file)
@@ -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 e4b8f69a3190526ec0918a9f04a9060f08c343f6..4b225d6f87a2cf118ad706000c16a23adee60f4f 100644 (file)
--- 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;