diff options
author | Eric Andersen | 2004-03-15 08:29:22 +0000 |
---|---|---|
committer | Eric Andersen | 2004-03-15 08:29:22 +0000 |
commit | c7bda1ce659294d6e22c06e087f6f265983c7578 (patch) | |
tree | 4c6d2217f4d8306c59cf1096f8664e1cfd167213 /coreutils/echo.c | |
parent | 8854004b41065b3d081af7f3df13a100b0c8bfbe (diff) | |
download | busybox-c7bda1ce659294d6e22c06e087f6f265983c7578.zip busybox-c7bda1ce659294d6e22c06e087f6f265983c7578.tar.gz |
Remove trailing whitespace. Update copyright to include 2004.
Diffstat (limited to 'coreutils/echo.c')
-rw-r--r-- | coreutils/echo.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/coreutils/echo.c b/coreutils/echo.c index b600a1f..26a6fbf 100644 --- a/coreutils/echo.c +++ b/coreutils/echo.c @@ -55,7 +55,7 @@ extern int echo_main(int argc, char** argv) * that all of the options specified are actually valid. * Otherwise, the string should just be echoed. */ - + if (!*(p = *argv + 1)) { /* A single '-', so echo it. */ goto just_echo; } @@ -87,7 +87,7 @@ just_echo: while ((c = *(*argv)++)) { if (c == eflag) { /* Check for escape seq. */ if (**argv == 'c') { - /* '\c' means cancel newline and + /* '\c' means cancel newline and * ignore all subsequent chars. */ goto DONE; } @@ -141,8 +141,8 @@ DONE: * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * - * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change - * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change> + * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change + * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change> * * California, Berkeley and its contributors. * 4. Neither the name of the University nor the names of its contributors |