summaryrefslogtreecommitdiff
path: root/gas/hash.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@bigpond.net.au>2008-08-12 23:39:31 +0000
committerAlan Modra <amodra@bigpond.net.au>2008-08-12 23:39:31 +0000
commitb12ec56f7e6a03f06d87d4adea43a45cf5691229 (patch)
tree277009d107f9f755e7a4c96d0c57080b7624094f /gas/hash.c
parentfb55a3a07b0b555a4763df5adebf7775453681d6 (diff)
downloadbinutils-redhat-b12ec56f7e6a03f06d87d4adea43a45cf5691229.tar.gz
Banish PARAMS and PTR. Convert to ISO C.
Delete unnecessary forward declarations.
Diffstat (limited to 'gas/hash.c')
-rw-r--r--gas/hash.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gas/hash.c b/gas/hash.c
index 4eab512f50..4a4768c4af 100644
--- a/gas/hash.c
+++ b/gas/hash.c
@@ -290,7 +290,7 @@ hash_jam (struct hash_control *table, const char *key, void *value)
value stored for the entry. If the entry is not found in the hash
table, this does nothing and returns NULL. */
-PTR
+void *
hash_replace (struct hash_control *table, const char *key, void *value)
{
struct hash_entry *p;
@@ -314,7 +314,7 @@ hash_replace (struct hash_control *table, const char *key, void *value)
/* Find an entry in a hash table, returning its value. Returns NULL
if the entry is not found. */
-PTR
+void *
hash_find (struct hash_control *table, const char *key)
{
struct hash_entry *p;
@@ -329,7 +329,7 @@ hash_find (struct hash_control *table, const char *key)
/* As hash_find, but KEY is of length LEN and is not guaranteed to be
NUL-terminated. */
-PTR
+void *
hash_find_n (struct hash_control *table, const char *key, size_t len)
{
struct hash_entry *p;
@@ -344,7 +344,7 @@ hash_find_n (struct hash_control *table, const char *key, size_t len)
/* Delete an entry from a hash table. This returns the value stored
for that entry, or NULL if there is no such entry. */
-PTR
+void *
hash_delete (struct hash_control *table, const char *key, int freeme)
{
struct hash_entry *p;