diff options
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/cut.c | 1 | ||||
-rw-r--r-- | coreutils/expr.c | 1 | ||||
-rw-r--r-- | coreutils/ls.c | 2 |
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 | ||
43 | static void cut_file(FILE *file, char delim, const struct cut_list *cut_lists, unsigned nlists) | 42 | static 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 | ||
54 | enum { | 54 | enum { |
55 | |||
56 | TERMINAL_WIDTH = 80, /* use 79 if terminal has linefold bug */ | 55 | TERMINAL_WIDTH = 80, /* use 79 if terminal has linefold bug */ |
57 | COLUMN_GAP = 2, /* includes the file type char */ | 56 | COLUMN_GAP = 2, /* includes the file type char */ |
58 | 57 | ||
@@ -120,7 +119,6 @@ LIST_LONG = LIST_MODEBITS | LIST_NLINKS | LIST_ID_NAME | LIST_SIZE | \ | |||
120 | SPLIT_DIR = 1, | 119 | SPLIT_DIR = 1, |
121 | SPLIT_FILE = 0, | 120 | SPLIT_FILE = 0, |
122 | SPLIT_SUBDIR = 2, | 121 | SPLIT_SUBDIR = 2, |
123 | |||
124 | }; | 122 | }; |
125 | 123 | ||
126 | /* "[-]Cadil1", POSIX mandated options, busybox always supports */ | 124 | /* "[-]Cadil1", POSIX mandated options, busybox always supports */ |