aboutsummaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
Diffstat (limited to 'misc')
-rw-r--r--misc/hsearch_r.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/misc/hsearch_r.c b/misc/hsearch_r.c
index d7c604cc56..398f0b6dd9 100644
--- a/misc/hsearch_r.c
+++ b/misc/hsearch_r.c
@@ -94,6 +94,7 @@ hcreate_r (nel, htab)
/* everything went alright */
return 1;
}
+libc_hidden_def (hcreate_r)
/* After using the hash table it has to be destroyed. The used memory can
@@ -116,6 +117,7 @@ hdestroy_r (htab)
/* the sign for an existing table is an value != NULL in htable */
htab->table = NULL;
}
+libc_hidden_def (hdestroy_r)
/* This is the search function. It uses double hashing with open addressing.