diff options
author | Mike Frysinger <vapier@gentoo.org> | 2012-08-18 00:37:30 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2012-08-18 01:54:12 -0400 |
commit | 493387d21f8c1ca8d1dafd7d19d845780f5f2b0c (patch) | |
tree | c4ebe7ecc4ca072e47e83a096589846fbceba52e /include/sys/socket.h | |
parent | a277af22ea038ff963355b603ade8d0a8a98eb5d (diff) | |
download | glibc-493387d21f8c1ca8d1dafd7d19d845780f5f2b0c.tar.gz glibc-493387d21f8c1ca8d1dafd7d19d845780f5f2b0c.tar.xz glibc-493387d21f8c1ca8d1dafd7d19d845780f5f2b0c.zip |
add attribute_hidden to __have_{sock_cloexec,pipe2,dup3
These internal knobs are not exposed as part of the public ABI, so mark them hidden to avoid generating relocations against them. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'include/sys/socket.h')
-rw-r--r-- | include/sys/socket.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sys/socket.h b/include/sys/socket.h index 50e6bb3a74..ec088572bd 100644 --- a/include/sys/socket.h +++ b/include/sys/socket.h @@ -148,7 +148,7 @@ libc_hidden_proto (__libc_sa_len) #endif #ifdef SOCK_CLOEXEC -extern int __have_sock_cloexec; +extern int __have_sock_cloexec attribute_hidden; /* At lot of other functionality became available at the same time as SOCK_CLOEXEC. Avoid defining separate variables for all of them unless it is really necessary. */ |