about summary refs log tree commit diff
path: root/misc/hsearch_r.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-08-04 03:50:21 +0000
committerRoland McGrath <roland@gnu.org>2002-08-04 03:50:21 +0000
commita14f26ef6924a6795025f4193a3567b95b339b05 (patch)
tree45ba174eb4d5d12c46ae8244fc6b6ba4a92590c9 /misc/hsearch_r.c
parentc41f555e0c91588469586cb7fef23907582b2595 (diff)
downloadglibc-a14f26ef6924a6795025f4193a3567b95b339b05.tar.gz
glibc-a14f26ef6924a6795025f4193a3567b95b339b05.tar.xz
glibc-a14f26ef6924a6795025f4193a3567b95b339b05.zip
* include/sys/resource.h: Use libc_hidden_proto for getpriority,
	setpriority.
	* sysdeps/unix/sysv/linux/getpriority.c: Add libc_hidden_def.
	* sysdeps/unix/sysv/irix4/getpriority.c: Likewise.
	* sysdeps/mach/hurd/setpriority.c: Likewise.
	* sysdeps/mach/hurd/getpriority.c: Likewise.
	* sysdeps/generic/setpriority.c: Likewise.
	* sysdeps/generic/getpriority.c: Likewise.

	* include/mcheck.h: Use libc_hidden_proto for mcheck_check_all.
	* malloc/mcheck.c: Add libc_hidden_def.

	* include/search.h: Use libc_hidden_proto for hcreate_r, hdestroy_r.
	* misc/hsearch_r.c: Add libc_hidden_def.

	* include/fnmatch.h: Use libc_hidden_proto for fnmatch.
	* posix/fnmatch.c: Add libc_hidden_weak.
Diffstat (limited to 'misc/hsearch_r.c')
-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.