aboutsummaryrefslogtreecommitdiff
path: root/coreutils
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-07-26 01:06:14 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2010-07-26 01:06:14 +0200
commitf3ea792badae9cd7c4205ac363301f1e94e57d4e (patch)
tree84f72b1e4c02c3e01ca3e393edc789dcaeba6c69 /coreutils
parentccb977186100ccf6b443c5f08c8b179c9b7e720b (diff)
downloadbusybox-f3ea792badae9cd7c4205ac363301f1e94e57d4e.tar.gz
*: mass cosmetic removal of extra empty lines. no code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
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)
{
return (((struct cut_list *) a)->startpos -
((struct cut_list *) b)->startpos);
-
}
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)
freev(i2);
}
return v;
-
}
/* 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 @@
enum {
-
TERMINAL_WIDTH = 80, /* use 79 if terminal has linefold bug */
COLUMN_GAP = 2, /* includes the file type char */
@@ -120,7 +119,6 @@ LIST_LONG = LIST_MODEBITS | LIST_NLINKS | LIST_ID_NAME | LIST_SIZE | \
SPLIT_DIR = 1,
SPLIT_FILE = 0,
SPLIT_SUBDIR = 2,
-
};
/* "[-]Cadil1", POSIX mandated options, busybox always supports */