summaryrefslogtreecommitdiffstats
path: root/kpat/freecell-solver/lookup2.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-01-30 20:17:40 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-01-30 20:17:40 +0900
commit5d8b924a625d2e4cfdb3452eeb8041eb80b3fee9 (patch)
tree8389142b68147edc3659ddca4d1078a6e3e83c9d /kpat/freecell-solver/lookup2.h
parentbe2865209c4882e6037e3292657cc1dd10dd655b (diff)
downloadtdegames-5d8b924a625d2e4cfdb3452eeb8041eb80b3fee9.tar.gz
tdegames-5d8b924a625d2e4cfdb3452eeb8041eb80b3fee9.zip
Removed explicit usage of the 'register' keyword.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kpat/freecell-solver/lookup2.h')
-rw-r--r--kpat/freecell-solver/lookup2.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/kpat/freecell-solver/lookup2.h b/kpat/freecell-solver/lookup2.h
index 002502ed..b689e64e 100644
--- a/kpat/freecell-solver/lookup2.h
+++ b/kpat/freecell-solver/lookup2.h
@@ -5,9 +5,9 @@ typedef unsigned long int ub4; /* unsigned 4-byte quantities */
typedef unsigned char ub1;
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 */
);
#endif /* FC_SOLVE__LOOKUP2_H */