From 5179365337e8c2fd2624fb298c69b5cad0441ccb Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 6 Mar 2005 16:20:43 +0000 Subject: [PATCH] Remove register keyword. --- src/shred.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/shred.c b/src/shred.c index fc02f13409..507ba35bff 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); -- 2.47.3