diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2018-11-07 20:52:37 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2018-11-07 20:52:37 -0800 |
commit | 1783f215d2e0e00b3b1c6db2a6a9df2ed3d699e3 (patch) | |
tree | fda9b61d391e2d6487e3f3e459128e44831bf03d /hash.c | |
parent | 05d09a44cdecb34f32891d0750779cfe10339e3b (diff) | |
download | txr-1783f215d2e0e00b3b1c6db2a6a9df2ed3d699e3.tar.gz txr-1783f215d2e0e00b3b1c6db2a6a9df2ed3d699e3.tar.bz2 txr-1783f215d2e0e00b3b1c6db2a6a9df2ed3d699e3.zip |
gethash_l: C99 fix for Solaris.txr-201
* hash.c (gethash_l): C99 inline instantiation updated
to match new type signature.
Diffstat (limited to 'hash.c')
-rw-r--r-- | hash.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -104,7 +104,7 @@ static int hash_str_limit = INT_MAX, hash_rec_limit = 32; /* C99 inline instantiations. */ #if __STDC_VERSION__ >= 199901L -loc gethash_l(val hash, val key, loc new_p); +loc gethash_l(val self, val hash, val key, loc new_p); #endif static u32_t randbox[] = { |