diff options
author | Florian Weimer <fweimer@redhat.com> | 2017-08-31 15:55:36 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2017-08-31 15:59:02 +0200 |
commit | ca4ec8039628cac6600541472b068be7535d4bb4 (patch) | |
tree | 93a4212150449d0a326ef7e259b6f802c4099f95 /sunrpc/svc_unix.c | |
parent | 24cffce7366c4070d8f823702a4fcec2cb732595 (diff) | |
download | glibc-ca4ec8039628cac6600541472b068be7535d4bb4.tar glibc-ca4ec8039628cac6600541472b068be7535d4bb4.tar.gz glibc-ca4ec8039628cac6600541472b068be7535d4bb4.tar.bz2 glibc-ca4ec8039628cac6600541472b068be7535d4bb4.zip |
sunrpc: Remove internal_function attribute
Diffstat (limited to 'sunrpc/svc_unix.c')
-rw-r--r-- | sunrpc/svc_unix.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sunrpc/svc_unix.c b/sunrpc/svc_unix.c index a8da3b2262..317a9e49cb 100644 --- a/sunrpc/svc_unix.c +++ b/sunrpc/svc_unix.c @@ -113,7 +113,7 @@ static const struct xp_ops svcunix_rendezvous_op = static int readunix (char*, char *, int); static int writeunix (char *, char *, int); -static SVCXPRT *makefd_xprt (int, u_int, u_int) internal_function; +static SVCXPRT *makefd_xprt (int, u_int, u_int); struct unix_rendezvous { /* kept in xprt->xp_p1 */ u_int sendsize; @@ -216,7 +216,6 @@ svcunixfd_create (int fd, u_int sendsize, u_int recvsize) libc_hidden_nolink_sunrpc (svcunixfd_create, GLIBC_2_1) static SVCXPRT * -internal_function makefd_xprt (int fd, u_int sendsize, u_int recvsize) { SVCXPRT *xprt; |