]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
stdlib: Remove internal_function attribute
authorFlorian Weimer <fweimer@redhat.com>
Thu, 31 Aug 2017 16:30:38 +0000 (18:30 +0200)
committerFlorian Weimer <fweimer@redhat.com>
Thu, 31 Aug 2017 16:52:00 +0000 (18:52 +0200)
ChangeLog
stdlib/fmtmsg.c

index afeb02f73345dd84b319ef7155476a5e281e0f3f..4c7341c04d3dbc9d0c115fc40d8b0e9952bff1b6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2017-08-31  Florian Weimer  <fweimer@redhat.com>
+
+       * stdlib/fmtmsg.c (internal_addseverity): Remove
+       internal_function.
+
 2017-08-31  Florian Weimer  <fweimer@redhat.com>
 
        * stdio-common/printf_fp.c (group_number): Remove
index ac0c3aa28abd285bad2ba1947e0e8b9605c27e10..f96e68c8c91f34e50ae59f719f8fed7c3be78f02 100644 (file)
@@ -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;