aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey A Law <law@cygnus.com>1999-11-08 16:26:37 +0000
committerJeff Law <law@gcc.gnu.org>1999-11-08 09:26:37 -0700
commit6e300472797235f4c605e7c9dd111a6a1d01a147 (patch)
tree31573e0883f857852c86cc0ea53e9af1dd9a644c
parent5d8f8b657c1a8a73d4125cc4e68aa7c78e7be67f (diff)
downloadgcc-6e300472797235f4c605e7c9dd111a6a1d01a147.zip
gcc-6e300472797235f4c605e7c9dd111a6a1d01a147.tar.gz
gcc-6e300472797235f4c605e7c9dd111a6a1d01a147.tar.bz2
* hashtab.c (traverse_hash_table): Protect prototype with PARAMS.
From-SVN: r30453
-rw-r--r--libiberty/ChangeLog4
-rw-r--r--libiberty/hashtab.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog
index d0144fc..8e5756e 100644
--- a/libiberty/ChangeLog
+++ b/libiberty/ChangeLog
@@ -1,3 +1,7 @@
+Mon Nov 8 09:23:41 1999 Jeffrey A Law (law@cygnus.com)
+
+ * hashtab.c (traverse_hash_table): Protect prototype with PARAMS.
+
Tue Nov 2 03:23:13 1999 Philippe De Muyter <phdm@macqel.be>
* xstrdup (sys/types.h): Include this file.
diff --git a/libiberty/hashtab.c b/libiberty/hashtab.c
index 9fce8cc..67a79f7 100644
--- a/libiberty/hashtab.c
+++ b/libiberty/hashtab.c
@@ -266,7 +266,7 @@ clear_hash_table_slot (htab, slot)
void
traverse_hash_table (htab, callback, info)
hash_table_t htab;
- int (*callback) (hash_table_entry_t, void *);
+ int (*callback) PARAMS ((hash_table_entry_t, void *));
void *info;
{
hash_table_entry_t *entry_ptr;