diff options
author | Roland McGrath <roland@gnu.org> | 2002-08-04 03:50:21 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-08-04 03:50:21 +0000 |
commit | a14f26ef6924a6795025f4193a3567b95b339b05 (patch) | |
tree | 45ba174eb4d5d12c46ae8244fc6b6ba4a92590c9 /misc | |
parent | c41f555e0c91588469586cb7fef23907582b2595 (diff) | |
download | glibc-a14f26ef6924a6795025f4193a3567b95b339b05.zip glibc-a14f26ef6924a6795025f4193a3567b95b339b05.tar.gz glibc-a14f26ef6924a6795025f4193a3567b95b339b05.tar.bz2 |
* 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')
-rw-r--r-- | misc/hsearch_r.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/misc/hsearch_r.c b/misc/hsearch_r.c index d7c604c..398f0b6 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. |