summaryrefslogtreecommitdiff
path: root/src/sum.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2005-03-06 16:31:51 +0000
committerJim Meyering <jim@meyering.net>2005-03-06 16:31:51 +0000
commitaf2031973758c6372e57c6b0dae62adc325d8a3a (patch)
tree7db15aa8280bfa8ed738fb9d7276256158d62548 /src/sum.c
parent947457a331f4ab006096f4891c97f8ed7702bcd2 (diff)
downloadcoreutils-af2031973758c6372e57c6b0dae62adc325d8a3a.tar.xz
Remove `register' keyword.
Diffstat (limited to 'src/sum.c')
-rw-r--r--src/sum.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/sum.c b/src/sum.c
index f2c4a2be7..317064e20 100644
--- a/src/sum.c
+++ b/src/sum.c
@@ -1,5 +1,5 @@
/* sum -- checksum and count the blocks in a file
- Copyright (C) 86, 89, 91, 1995-2002, 2004 Free Software Foundation, Inc.
+ Copyright (C) 86, 89, 91, 1995-2002, 2004, 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
@@ -86,10 +86,10 @@ With no FILE, or when FILE is -, read standard input.\n\
static bool
bsd_sum_file (const char *file, int print_name)
{
- register FILE *fp;
- register int checksum = 0; /* The checksum mod 2^16. */
- register uintmax_t total_bytes = 0; /* The number of bytes. */
- register int ch; /* Each character read. */
+ FILE *fp;
+ int checksum = 0; /* The checksum mod 2^16. */
+ uintmax_t total_bytes = 0; /* The number of bytes. */
+ int ch; /* Each character read. */
char hbuf[LONGEST_HUMAN_READABLE + 1];
if (STREQ (file, "-"))