diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-11-08 16:26:37 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-11-08 16:26:37 +0000 |
commit | b77d3fd041800371a8daea4158f33b9f84b09886 (patch) | |
tree | 31573e0883f857852c86cc0ea53e9af1dd9a644c /libiberty/hashtab.c | |
parent | ae6130f3fde896aee5ea3550ad796f05a1f66d27 (diff) | |
download | gcc-b77d3fd041800371a8daea4158f33b9f84b09886.tar.gz |
* hashtab.c (traverse_hash_table): Protect prototype with PARAMS.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30453 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libiberty/hashtab.c')
-rw-r--r-- | libiberty/hashtab.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libiberty/hashtab.c b/libiberty/hashtab.c index 9fce8ccc125..67a79f7e509 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; |