* hash.c (hash_table_init_n): Wrap prototype arguments in PARAMS().
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>
Fri, 20 Nov 1998 09:18:42 +0000 (09:18 +0000)
committerKaveh Ghazi <ghazi@gcc.gnu.org>
Fri, 20 Nov 1998 09:18:42 +0000 (09:18 +0000)
From-SVN: r23735

gcc/ChangeLog
gcc/hash.c

index efd0cd9f4b7dba6306e3c1a60c0ab04205246e17..347bcfb1365a340a2115952d7dc84fc56c42206a 100644 (file)
@@ -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
index 473d0ffbd93267d56151b073358fdd2a96497982..34b6a64abfa7e09df537c793a93b8fc2bf7ea063 100644 (file)
@@ -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;