diff options
author | Karl Williamson <public@khwilliamson.com> | 2012-11-24 21:06:36 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2012-11-24 21:45:22 -0700 |
commit | 5aaab254c02795622bdf42e348ad8473aa1fc643 (patch) | |
tree | 341c84b4a4867c96c3bcd4a63d34c244356054ce /x2p/hash.c | |
parent | a8bd0d47f960000fee81e97d55dd5e8bac15e034 (diff) | |
download | perl-5aaab254c02795622bdf42e348ad8473aa1fc643.tar.gz |
Remove "register" declarations
This finishes the removal of register declarations started by
eb578fdb5569b91c28466a4d1939e381ff6ceaf4. It neglected the ones in
function parameter declarations, and didn't include things in dist, ext,
and lib, which this does include
Diffstat (limited to 'x2p/hash.c')
-rw-r--r-- | x2p/hash.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/x2p/hash.c b/x2p/hash.c index 1620175584..7d9c5ece85 100644 --- a/x2p/hash.c +++ b/x2p/hash.c @@ -17,7 +17,7 @@ char *savestr(char *str); #endif STR * -hfetch(register HASH *tb, char *key) +hfetch(HASH *tb, char *key) { char *s; int i; @@ -43,7 +43,7 @@ hfetch(register HASH *tb, char *key) } bool -hstore(register HASH *tb, char *key, STR *val) +hstore(HASH *tb, char *key, STR *val) { char *s; int i; @@ -141,7 +141,7 @@ hnew(void) } int -hiterinit(register HASH *tb) +hiterinit(HASH *tb) { tb->tbl_riter = -1; tb->tbl_eiter = (HENT*)NULL; |