diff options
author | Florian Weimer <fweimer@redhat.com> | 2017-08-13 21:11:06 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2017-08-13 21:11:06 +0200 |
commit | c4d767f7f35efa43f072d494185f1cea4a7bd871 (patch) | |
tree | a06ac672e713345b827a31c47bc8f86ff487f0c6 /include/rpc | |
parent | b22974092d09a61fdb371b28837175bb616e78cf (diff) | |
download | glibc-c4d767f7f35efa43f072d494185f1cea4a7bd871.tar glibc-c4d767f7f35efa43f072d494185f1cea4a7bd871.tar.gz glibc-c4d767f7f35efa43f072d494185f1cea4a7bd871.tar.bz2 glibc-c4d767f7f35efa43f072d494185f1cea4a7bd871.zip |
__libc_rpc_getport: Remove internal_function attribute
This function has a hidden alias and is therefore expected to be
called across DSO boundaries.
Diffstat (limited to 'include/rpc')
-rw-r--r-- | include/rpc/pmap_clnt.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/rpc/pmap_clnt.h b/include/rpc/pmap_clnt.h index ec907c28cc..7928f0b368 100644 --- a/include/rpc/pmap_clnt.h +++ b/include/rpc/pmap_clnt.h @@ -12,8 +12,7 @@ extern int __get_socket (struct sockaddr_in *saddr) attribute_hidden internal_function; extern u_short __libc_rpc_getport (struct sockaddr_in *address, u_long program, u_long version, u_int protocol, - time_t timeout_sec, time_t tottimeout_sec) - internal_function; + time_t timeout_sec, time_t tottimeout_sec); libc_hidden_proto (__libc_rpc_getport) libc_hidden_proto (clnt_broadcast) |