This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH COMMITTED] stdlib: Remove internal_function attribute


2017-08-31  Florian Weimer  <fweimer@redhat.com>

	* stdlib/fmtmsg.c (internal_addseverity): Remove
	internal_function.

diff --git a/stdlib/fmtmsg.c b/stdlib/fmtmsg.c
index ac0c3aa28a..f96e68c8c9 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;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]