diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 1998-11-20 09:18:42 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 1998-11-20 09:18:42 +0000 |
commit | d25a233ec3b13b92ec08dfb37060fce3e0ec19a4 (patch) | |
tree | 080e0e03e32e8f5efea1d9729abb4effb9a24a69 /gcc/hash.c | |
parent | f4a7f981b6a774b1c809b300c27a9a13510930fa (diff) | |
download | gcc-d25a233ec3b13b92ec08dfb37060fce3e0ec19a4.zip gcc-d25a233ec3b13b92ec08dfb37060fce3e0ec19a4.tar.gz gcc-d25a233ec3b13b92ec08dfb37060fce3e0ec19a4.tar.bz2 |
* hash.c (hash_table_init_n): Wrap prototype arguments in PARAMS().
From-SVN: r23735
Diffstat (limited to 'gcc/hash.c')
-rw-r--r-- | gcc/hash.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -41,8 +41,8 @@ hash_table_init_n (table, newfunc, hash, comp, size) struct hash_entry *(*newfunc) PARAMS ((struct hash_entry *, struct hash_table *, hash_table_key)); - unsigned long (*hash) (hash_table_key); - boolean (*comp) (hash_table_key, hash_table_key); + unsigned long (*hash) PARAMS ((hash_table_key)); + boolean (*comp) PARAMS ((hash_table_key, hash_table_key)); unsigned int size; { unsigned int alloc; |