From: Florian Weimer Date: Thu, 31 Aug 2017 16:30:38 +0000 (+0200) Subject: stdlib: Remove internal_function attribute X-Git-Tag: glibc-2.27~1010 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=41ad5ca60e45c865b6195e9e18082882076aa0dc;p=thirdparty%2Fglibc.git stdlib: Remove internal_function attribute --- diff --git a/ChangeLog b/ChangeLog index afeb02f7334..4c7341c04d3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2017-08-31 Florian Weimer + + * stdlib/fmtmsg.c (internal_addseverity): Remove + internal_function. + 2017-08-31 Florian Weimer * stdio-common/printf_fp.c (group_number): Remove diff --git a/stdlib/fmtmsg.c b/stdlib/fmtmsg.c index ac0c3aa28ab..f96e68c8c91 100644 --- a/stdlib/fmtmsg.c +++ b/stdlib/fmtmsg.c @@ -94,8 +94,7 @@ static int print; /* Prototypes for local functions. */ static void init (void); -static int internal_addseverity (int severity, const char *string) - internal_function; +static int internal_addseverity (int severity, const char *string); int @@ -295,7 +294,6 @@ init (void) /* Add the new entry to the list. */ static int -internal_function internal_addseverity (int severity, const char *string) { struct severity_info *runp, *lastp;