diff options
author | Michele Calgaro <[email protected]> | 2020-01-30 20:17:40 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2020-01-30 20:17:40 +0900 |
commit | 5d8b924a625d2e4cfdb3452eeb8041eb80b3fee9 (patch) | |
tree | 8389142b68147edc3659ddca4d1078a6e3e83c9d /kpat/freecell-solver/lookup2.c | |
parent | be2865209c4882e6037e3292657cc1dd10dd655b (diff) | |
download | tdegames-5d8b924a625d2e4cfdb3452eeb8041eb80b3fee9.tar.gz tdegames-5d8b924a625d2e4cfdb3452eeb8041eb80b3fee9.zip |
Removed explicit usage of the 'register' keyword.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kpat/freecell-solver/lookup2.c')
-rw-r--r-- | kpat/freecell-solver/lookup2.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kpat/freecell-solver/lookup2.c b/kpat/freecell-solver/lookup2.c index 6ab9ae7e..e0f49f38 100644 --- a/kpat/freecell-solver/lookup2.c +++ b/kpat/freecell-solver/lookup2.c @@ -73,12 +73,12 @@ mix() was built out of 36 single-cycle latency instructions in a */ ub4 freecell_solver_lookup2_hash_function( - register ub1 *k, /* the key */ - register ub4 length, /* the length of the key */ - register ub4 initval /* the previous hash, or an arbitrary value */ + ub1 *k, /* the key */ + ub4 length, /* the length of the key */ + ub4 initval /* the previous hash, or an arbitrary value */ ) { - register ub4 a,b,c,len; + ub4 a,b,c,len; /* Set up the internal state */ len = length; |