1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00

stdlib: Remove internal_function attribute

This commit is contained in:
Florian Weimer
2017-08-31 18:30:38 +02:00
parent 2fa6d086d1
commit 41ad5ca60e
2 changed files with 6 additions and 3 deletions

View File

@ -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> 2017-08-31 Florian Weimer <fweimer@redhat.com>
* stdio-common/printf_fp.c (group_number): Remove * stdio-common/printf_fp.c (group_number): Remove

View File

@ -94,8 +94,7 @@ static int print;
/* Prototypes for local functions. */ /* Prototypes for local functions. */
static void init (void); static void init (void);
static int internal_addseverity (int severity, const char *string) static int internal_addseverity (int severity, const char *string);
internal_function;
int int
@ -295,7 +294,6 @@ init (void)
/* Add the new entry to the list. */ /* Add the new entry to the list. */
static int static int
internal_function
internal_addseverity (int severity, const char *string) internal_addseverity (int severity, const char *string)
{ {
struct severity_info *runp, *lastp; struct severity_info *runp, *lastp;