diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-06-14 09:00:28 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-06-14 09:00:28 +0000 |
commit | 8ba1d42919f932a96d6db7889694d93dffd997c1 (patch) | |
tree | 6fb785a9e7795cc283652d55fc98455b2127d3c5 /nptl/sysdeps/unix | |
parent | a4596570324480a8af6a9a277dadb1c2ff7be3f9 (diff) | |
download | glibc-8ba1d42919f932a96d6db7889694d93dffd997c1.zip glibc-8ba1d42919f932a96d6db7889694d93dffd997c1.tar.gz glibc-8ba1d42919f932a96d6db7889694d93dffd997c1.tar.bz2 |
Update.
* sysdeps/unix/sysv/linux/check_pf.c (__check_pf): Use __close,
not close.
* inet/inet6_option.c (inet6_option_alloc): Add libc_hidden_def.
* include/netinet/in.h (inet6_option_alloc): Add libc_hidden_proto
definition.
Diffstat (limited to 'nptl/sysdeps/unix')
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/fork.h | 1 | ||||
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/register-atfork.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/nptl/sysdeps/unix/sysv/linux/fork.h b/nptl/sysdeps/unix/sysv/linux/fork.h index bcdf621..d093ccc 100644 --- a/nptl/sysdeps/unix/sysv/linux/fork.h +++ b/nptl/sysdeps/unix/sysv/linux/fork.h @@ -54,3 +54,4 @@ extern int __register_atfork (void (*__prepare) (void), void (*__parent) (void), void (*__child) (void), void *dso_handle); +libc_hidden_proto (__register_atfork) diff --git a/nptl/sysdeps/unix/sysv/linux/register-atfork.c b/nptl/sysdeps/unix/sysv/linux/register-atfork.c index 3177f5a..9707e46 100644 --- a/nptl/sysdeps/unix/sysv/linux/register-atfork.c +++ b/nptl/sysdeps/unix/sysv/linux/register-atfork.c @@ -106,6 +106,7 @@ __register_atfork (prepare, parent, child, dso_handle) return newp == NULL ? ENOMEM : 0; } +libc_hidden_def (__register_atfork) libc_freeres_fn (free_mem) |