diff options
author | Jim Meyering <jim@meyering.net> | 2003-04-15 06:18:05 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-04-15 06:18:05 +0000 |
commit | d882eab2f25d900b345b4d0814a04f808dbe4291 (patch) | |
tree | b0dca1a6050c1b4e118afb118220d9e2969d22b6 | |
parent | c4b4c0a76ddd88333334789f1901dc8d66b7c21f (diff) | |
download | coreutils-d882eab2f25d900b345b4d0814a04f808dbe4291.tar.xz |
Remove (or replace-with-TAB(s) to retain alignment)
each sequence of spaces before a TAB character.
-rw-r--r-- | lib/getloadavg.c | 6 | ||||
-rw-r--r-- | lib/md5.c | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/getloadavg.c b/lib/getloadavg.c index e9c4c0889..a0e3d5551 100644 --- a/lib/getloadavg.c +++ b/lib/getloadavg.c @@ -1,6 +1,6 @@ /* Get the system load averages. - Copyright (C) 1985, 86, 87, 88, 89, 91, 92, 93, 1994, 1995, 1997 - Free Software Foundation, Inc. + Copyright (C) 1985, 86, 87, 88, 89, 91, 92, 93, 1994, 1995, 1997, 2003 + Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -62,7 +62,7 @@ VMS WINDOWS32 No-op for Windows95/NT. __linux__ Linux: assumes /proc filesystem mounted. - Support from Michael K. Johnson. + Support from Michael K. Johnson. __NetBSD__ NetBSD: assumes /kern filesystem mounted. In addition, to avoid nesting many #ifdefs, we internally set @@ -396,7 +396,7 @@ md5_process_block (buffer, len, ctx) argument specifying the function to use. */ #undef OP #define OP(f, a, b, c, d, k, s, T) \ - do \ + do \ { \ a += f (b, c, d) + correct_words[k] + T; \ a = rol (a, s); \ |