]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Remove `register' keyword.
authorJim Meyering <jim@meyering.net>
Sun, 6 Mar 2005 16:34:01 +0000 (16:34 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 6 Mar 2005 16:34:01 +0000 (16:34 +0000)
src/wc.c

index ed65a11c5c1929547a93bc5b88b66972838ec240..4b7098775c9c3ae287a769ba728d14fdd1c60f5b 100644 (file)
--- a/src/wc.c
+++ b/src/wc.c
@@ -1,5 +1,5 @@
 /* wc - print the number of bytes, words, and lines in files
-   Copyright (C) 85, 91, 1995-2004 Free Software Foundation, Inc.
+   Copyright (C) 85, 91, 1995-2005 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
@@ -274,7 +274,7 @@ wc (int fd, char const *file_x, struct fstatus *fstatus)
         but not chars or words.  */
       while ((bytes_read = safe_read (fd, buf, BUFFER_SIZE)) > 0)
        {
-         register char *p = buf;
+         char *p = buf;
 
          if (bytes_read == SAFE_READ_ERROR)
            {