]> git.saurik.com Git - apple/libc.git/blobdiff - stdlib/FreeBSD/strhash.c
Libc-825.40.1.tar.gz
[apple/libc.git] / stdlib / FreeBSD / strhash.c
index 022c45b8cceedf74072e6e91c612f08ac8070169..60cacbd9a13f945ea82604d6d8162a20f970fd19 100644 (file)
@@ -85,6 +85,7 @@ __FBSDID("$FreeBSD: src/lib/libc/stdlib/strhash.c,v 1.10 2002/03/22 21:53:10 obr
 
 static int _hash(int size, char *key);
 static hash_node *list_find(caddr_t key, hash_node *head);
+static int assign_key(char *key, hash_node *node);
 
 
 /*
@@ -242,8 +243,6 @@ hash_search(hash_table *table, caddr_t key, void *datum,
     else{
        if (datum){
 
-           static int assign_key();
-
            hash_node *new = (hash_node *)malloc(sizeof(hash_node));
 
            if (!new || !assign_key(key, new)){