From 5d8b924a625d2e4cfdb3452eeb8041eb80b3fee9 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 30 Jan 2020 20:17:40 +0900 Subject: Removed explicit usage of the 'register' keyword. Signed-off-by: Michele Calgaro --- kpat/freecell-solver/lookup2.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'kpat/freecell-solver/lookup2.c') 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; -- cgit v1.2.1