aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/hash.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index efd0cd9..347bcfb 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+Fri Nov 20 12:14:16 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
+
+ * hash.c (hash_table_init_n): Wrap prototype arguments in PARAMS().
+
Fri Nov 20 08:34:00 1998 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
* function.c (nonlocal_goto_handler_slots): Renamed from
diff --git a/gcc/hash.c b/gcc/hash.c
index 473d0ff..34b6a64 100644
--- a/gcc/hash.c
+++ b/gcc/hash.c
@@ -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;