diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-10-05 15:19:25 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-10-05 15:19:25 +0200 |
commit | a02a4e98306194dc12bca46d099647bcce602bb9 (patch) | |
tree | 7bc5ff1de66d28dd4124306218a84d097ef36009 /coreutils | |
parent | 416899fca6c8b7a09ec301e1a961459bb3b6c139 (diff) | |
download | busybox-a02a4e98306194dc12bca46d099647bcce602bb9.tar.gz |
whitespace and comment format fixes, no code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/basename.c | 1 | ||||
-rw-r--r-- | coreutils/fold.c | 3 | ||||
-rw-r--r-- | coreutils/libcoreutils/coreutils.h | 1 | ||||
-rw-r--r-- | coreutils/libcoreutils/cp_mv_stat.c | 2 | ||||
-rw-r--r-- | coreutils/libcoreutils/getopt_mk_fifo_nod.c | 2 | ||||
-rw-r--r-- | coreutils/mktemp.c | 2 | ||||
-rw-r--r-- | coreutils/nohup.c | 3 | ||||
-rw-r--r-- | coreutils/printf.c | 3 | ||||
-rw-r--r-- | coreutils/realpath.c | 3 | ||||
-rw-r--r-- | coreutils/stty.c | 3 | ||||
-rw-r--r-- | coreutils/tr.c | 2 | ||||
-rw-r--r-- | coreutils/uname.c | 3 | ||||
-rw-r--r-- | coreutils/unlink.c | 3 | ||||
-rw-r--r-- | coreutils/who.c | 4 |
14 files changed, 16 insertions, 19 deletions
diff --git a/coreutils/basename.c b/coreutils/basename.c index 566aeebda..812a5e63e 100644 --- a/coreutils/basename.c +++ b/coreutils/basename.c @@ -6,7 +6,6 @@ * * Licensed under GPLv2 or later, see file LICENSE in this source tree. */ - /* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) * * Changes: diff --git a/coreutils/fold.c b/coreutils/fold.c index 578e5a4b6..1e26dde0c 100644 --- a/coreutils/fold.c +++ b/coreutils/fold.c @@ -1,5 +1,6 @@ /* vi: set sw=4 ts=4: */ -/* fold -- wrap each input line to fit in specified width. +/* + * fold -- wrap each input line to fit in specified width. * * Written by David MacKenzie, djm@gnu.ai.mit.edu. * Copyright (C) 91, 1995-2002 Free Software Foundation, Inc. diff --git a/coreutils/libcoreutils/coreutils.h b/coreutils/libcoreutils/coreutils.h index 307d0330a..ad102e423 100644 --- a/coreutils/libcoreutils/coreutils.h +++ b/coreutils/libcoreutils/coreutils.h @@ -2,7 +2,6 @@ /* * Licensed under GPLv2 or later, see file LICENSE in this source tree. */ - #ifndef COREUTILS_H #define COREUTILS_H 1 diff --git a/coreutils/libcoreutils/cp_mv_stat.c b/coreutils/libcoreutils/cp_mv_stat.c index 5ba07ecc3..26c0e1645 100644 --- a/coreutils/libcoreutils/cp_mv_stat.c +++ b/coreutils/libcoreutils/cp_mv_stat.c @@ -17,9 +17,7 @@ * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - * */ - #include "libbb.h" #include "coreutils.h" diff --git a/coreutils/libcoreutils/getopt_mk_fifo_nod.c b/coreutils/libcoreutils/getopt_mk_fifo_nod.c index 47375ff91..dafe70edf 100644 --- a/coreutils/libcoreutils/getopt_mk_fifo_nod.c +++ b/coreutils/libcoreutils/getopt_mk_fifo_nod.c @@ -17,9 +17,7 @@ * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - * */ - #include "libbb.h" #include "coreutils.h" diff --git a/coreutils/mktemp.c b/coreutils/mktemp.c index d4ff883fa..c041fedf7 100644 --- a/coreutils/mktemp.c +++ b/coreutils/mktemp.c @@ -2,13 +2,11 @@ /* * Mini mktemp implementation for busybox * - * * Copyright (C) 2000 by Daniel Jacobowitz * Written by Daniel Jacobowitz <dan@debian.org> * * Licensed under GPLv2 or later, see file LICENSE in this source tree. */ - /* Coreutils 6.12 man page says: * mktemp [OPTION]... [TEMPLATE] * Create a temporary file or directory, safely, and print its name. If diff --git a/coreutils/nohup.c b/coreutils/nohup.c index 8a70ec4df..ae136e085 100644 --- a/coreutils/nohup.c +++ b/coreutils/nohup.c @@ -1,5 +1,6 @@ /* vi: set sw=4 ts=4: */ -/* nohup - invoke a utility immune to hangups. +/* + * nohup - invoke a utility immune to hangups. * * Busybox version based on nohup specification at * http://www.opengroup.org/onlinepubs/007904975/utilities/nohup.html diff --git a/coreutils/printf.c b/coreutils/printf.c index 413273b26..a666ff7ac 100644 --- a/coreutils/printf.c +++ b/coreutils/printf.c @@ -1,5 +1,6 @@ /* vi: set sw=4 ts=4: */ -/* printf - format and print data +/* + * printf - format and print data * * Copyright 1999 Dave Cinege * Portions copyright (C) 1990-1996 Free Software Foundation, Inc. diff --git a/coreutils/realpath.c b/coreutils/realpath.c index f9c630135..aa878fcd2 100644 --- a/coreutils/realpath.c +++ b/coreutils/realpath.c @@ -1,5 +1,6 @@ /* vi: set sw=4 ts=4: */ -/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) +/* + * Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) * * Now does proper error checking on output and returns a failure exit code * if one or more paths cannot be resolved. diff --git a/coreutils/stty.c b/coreutils/stty.c index df23f4cae..424d909cf 100644 --- a/coreutils/stty.c +++ b/coreutils/stty.c @@ -1,5 +1,6 @@ /* vi: set sw=4 ts=4: */ -/* stty -- change and print terminal line settings +/* + * stty -- change and print terminal line settings * Copyright (C) 1990-1999 Free Software Foundation, Inc. * * Licensed under GPLv2 or later, see file LICENSE in this source tree. diff --git a/coreutils/tr.c b/coreutils/tr.c index c5872434a..10284e1c9 100644 --- a/coreutils/tr.c +++ b/coreutils/tr.c @@ -2,7 +2,7 @@ /* * Mini tr implementation for busybox * - ** Copyright (c) 1987,1997, Prentice Hall All rights reserved. + * Copyright (c) 1987,1997, Prentice Hall All rights reserved. * * The name of Prentice Hall may not be used to endorse or promote * products derived from this software without specific prior diff --git a/coreutils/uname.c b/coreutils/uname.c index bb2d1fe8d..57039b1bf 100644 --- a/coreutils/uname.c +++ b/coreutils/uname.c @@ -1,5 +1,6 @@ /* vi: set sw=4 ts=4: */ -/* uname -- print system information +/* + * uname -- print system information * Copyright (C) 1989-1999 Free Software Foundation, Inc. * * Licensed under GPLv2 or later, see file LICENSE in this source tree. diff --git a/coreutils/unlink.c b/coreutils/unlink.c index 56309b1c7..61b108a84 100644 --- a/coreutils/unlink.c +++ b/coreutils/unlink.c @@ -1,5 +1,6 @@ /* vi: set sw=4 ts=4: */ -/* unlink for busybox +/* + * unlink for busybox * * Copyright (C) 2014 Isaac Dunham <ibid.ag@gmail.com> * diff --git a/coreutils/who.c b/coreutils/who.c index cfe0c921e..80226c3d6 100644 --- a/coreutils/who.c +++ b/coreutils/who.c @@ -1,5 +1,5 @@ /* vi: set sw=4 ts=4: */ -/*---------------------------------------------------------------------- +/* * Mini who is used to display user name, login time, * idle time and host name. * @@ -13,8 +13,6 @@ * Copyright (c) 2002 AYR Networks, Inc. * * Licensed under GPLv2 or later, see file LICENSE in this source tree. - * - *---------------------------------------------------------------------- */ //config:config WHO //config: bool "who (3.7 kb)" |