aboutsummaryrefslogtreecommitdiff
path: root/coreutils
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils')
-rw-r--r--coreutils/cut.c1
-rw-r--r--coreutils/expr.c1
-rw-r--r--coreutils/ls.c2
3 files changed, 0 insertions, 4 deletions
diff --git a/coreutils/cut.c b/coreutils/cut.c
index 53f343a33..696478bb2 100644
--- a/coreutils/cut.c
+++ b/coreutils/cut.c
@@ -37,7 +37,6 @@ static int cmpfunc(const void *a, const void *b)
37{ 37{
38 return (((struct cut_list *) a)->startpos - 38 return (((struct cut_list *) a)->startpos -
39 ((struct cut_list *) b)->startpos); 39 ((struct cut_list *) b)->startpos);
40
41} 40}
42 41
43static void cut_file(FILE *file, char delim, const struct cut_list *cut_lists, unsigned nlists) 42static void cut_file(FILE *file, char delim, const struct cut_list *cut_lists, unsigned nlists)
diff --git a/coreutils/expr.c b/coreutils/expr.c
index f40edad4e..8988340f1 100644
--- a/coreutils/expr.c
+++ b/coreutils/expr.c
@@ -341,7 +341,6 @@ static VALUE *eval6(void)
341 freev(i2); 341 freev(i2);
342 } 342 }
343 return v; 343 return v;
344
345} 344}
346 345
347/* Handle : operator (pattern matching). 346/* Handle : operator (pattern matching).
diff --git a/coreutils/ls.c b/coreutils/ls.c
index 1197f7d71..3e6980509 100644
--- a/coreutils/ls.c
+++ b/coreutils/ls.c
@@ -52,7 +52,6 @@
52 52
53 53
54enum { 54enum {
55
56TERMINAL_WIDTH = 80, /* use 79 if terminal has linefold bug */ 55TERMINAL_WIDTH = 80, /* use 79 if terminal has linefold bug */
57COLUMN_GAP = 2, /* includes the file type char */ 56COLUMN_GAP = 2, /* includes the file type char */
58 57
@@ -120,7 +119,6 @@ LIST_LONG = LIST_MODEBITS | LIST_NLINKS | LIST_ID_NAME | LIST_SIZE | \
120SPLIT_DIR = 1, 119SPLIT_DIR = 1,
121SPLIT_FILE = 0, 120SPLIT_FILE = 0,
122SPLIT_SUBDIR = 2, 121SPLIT_SUBDIR = 2,
123
124}; 122};
125 123
126/* "[-]Cadil1", POSIX mandated options, busybox always supports */ 124/* "[-]Cadil1", POSIX mandated options, busybox always supports */