From ca4ec8039628cac6600541472b068be7535d4bb4 Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Thu, 31 Aug 2017 15:55:36 +0200 Subject: sunrpc: Remove internal_function attribute --- sunrpc/xcrypt.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'sunrpc/xcrypt.c') diff --git a/sunrpc/xcrypt.c b/sunrpc/xcrypt.c index da7c4e6..cb04a92 100644 --- a/sunrpc/xcrypt.c +++ b/sunrpc/xcrypt.c @@ -63,11 +63,11 @@ static const char hex[16] = : ({ int upp = toupper (c); \ upp >= 'A' && upp <= 'Z' ? upp - 'A' + 10 : -1; })) #else -static char hexval (char) internal_function; +static char hexval (char); #endif -static void hex2bin (int, char *, char *) internal_function; -static void bin2hex (int, unsigned char *, char *) internal_function; +static void hex2bin (int, char *, char *); +static void bin2hex (int, unsigned char *, char *); void passwd2des_internal (char *pw, char *key); #ifdef _LIBC libc_hidden_proto (passwd2des_internal) @@ -171,7 +171,6 @@ libc_hidden_nolink_sunrpc (xdecrypt, GLIBC_2_1) * Hex to binary conversion */ static void -internal_function hex2bin (int len, char *hexnum, char *binnum) { int i; @@ -184,7 +183,6 @@ hex2bin (int len, char *hexnum, char *binnum) * Binary to hex conversion */ static void -internal_function bin2hex (int len, unsigned char *binnum, char *hexnum) { int i; -- cgit v1.1