]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blobdiff - gas/hash.h
* Makefile.am (GAS_CFILES): Remove bignum-copy.c.
[thirdparty/binutils-gdb.git] / gas / hash.h
index 09c52f8edb09baf89cf2a40668b317428203ed5b..4556f10a7993b976029bbc9290482d843a04c94f 100644 (file)
@@ -51,23 +51,11 @@ extern const char *hash_insert (struct hash_control *,
 extern const char *hash_jam (struct hash_control *,
                             const char *key, PTR value);
 
-/* Replace an existing entry in a hash table.  This returns the old
-   value stored for the entry.  If the entry is not found in the hash
-   table, this does nothing and returns NULL.  */
-
-extern PTR hash_replace (struct hash_control *, const char *key,
-                        PTR value);
-
 /* Find an entry in a hash table, returning its value.  Returns NULL
    if the entry is not found.  */
 
 extern PTR hash_find (struct hash_control *, const char *key);
 
-/* Delete an entry from a hash table.  This returns the value stored
-   for that entry, or NULL if there is no such entry.  */
-
-extern PTR hash_delete (struct hash_control *, const char *key);
-
 /* Traverse a hash table.  Call the function on every entry in the
    hash table.  */