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/auth_unix.c | |
parent | 24cffce7366c4070d8f823702a4fcec2cb732595 (diff) | |
download | glibc-ca4ec8039628cac6600541472b068be7535d4bb4.tar.gz glibc-ca4ec8039628cac6600541472b068be7535d4bb4.tar.xz glibc-ca4ec8039628cac6600541472b068be7535d4bb4.zip |
sunrpc: Remove internal_function attribute
Diffstat (limited to 'sunrpc/auth_unix.c')
-rw-r--r-- | sunrpc/auth_unix.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sunrpc/auth_unix.c b/sunrpc/auth_unix.c index b71612cd80..b035fdd870 100644 --- a/sunrpc/auth_unix.c +++ b/sunrpc/auth_unix.c @@ -83,7 +83,7 @@ struct audata { }; #define AUTH_PRIVATE(auth) ((struct audata *)auth->ah_private) -static bool_t marshal_new_auth (AUTH *) internal_function; +static bool_t marshal_new_auth (AUTH *); /* @@ -337,7 +337,6 @@ authunix_destroy (AUTH *auth) * sets private data, au_marshed and au_mpos */ static bool_t -internal_function marshal_new_auth (AUTH *auth) { XDR xdr_stream; |