summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2005-03-06 16:20:43 +0000
committerJim Meyering <jim@meyering.net>2005-03-06 16:20:43 +0000
commit5179365337e8c2fd2624fb298c69b5cad0441ccb (patch)
tree04db2e3f7ef6310a532f1615ad17481c2a698702
parent74e3e13b3a19afc2f8573afbad0002060b7e3d4d (diff)
downloadcoreutils-5179365337e8c2fd2624fb298c69b5cad0441ccb.tar.xz
Remove register keyword.
-rw-r--r--src/shred.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/shred.c b/src/shred.c
index fc02f1340..507ba35bf 100644
--- a/src/shred.c
+++ b/src/shred.c
@@ -272,9 +272,9 @@ struct isaac_state
static void
isaac_refill (struct isaac_state *s, uint32_t r[/* ISAAC_WORDS */])
{
- register uint32_t a, b; /* Caches of a and b */
- register uint32_t x, y; /* Temps needed by isaac_step macro */
- register uint32_t *m = s->mm; /* Pointer into state array */
+ uint32_t a, b; /* Caches of a and b */
+ uint32_t x, y; /* Temps needed by isaac_step macro */
+ uint32_t *m = s->mm; /* Pointer into state array */
a = s->a;
b = s->b + (++s->c);