summaryrefslogtreecommitdiff
path: root/src/wc.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2005-03-06 16:34:01 +0000
committerJim Meyering <jim@meyering.net>2005-03-06 16:34:01 +0000
commite098a29c751d998d8a6e4650e8a5ada54a0cae4e (patch)
tree433f09cd4a4acc27144a5bf460decb803efe1531 /src/wc.c
parent6eb01f34a60e149bfb70f4f2f15551441859abaf (diff)
downloadcoreutils-e098a29c751d998d8a6e4650e8a5ada54a0cae4e.tar.xz
Remove `register' keyword.
Diffstat (limited to 'src/wc.c')
-rw-r--r--src/wc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wc.c b/src/wc.c
index ed65a11c5..4b7098775 100644
--- 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)
{