diff options
author | Florian Weimer <fweimer@redhat.com> | 2017-08-31 18:30:38 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2017-08-31 18:52:00 +0200 |
commit | 41ad5ca60e45c865b6195e9e18082882076aa0dc (patch) | |
tree | ff9df04903a7a594bd1e8c68557e37bc4978ec20 /stdlib | |
parent | 2fa6d086d15f15f2fde50bcac5f552f652d3ef36 (diff) | |
download | glibc-41ad5ca60e45c865b6195e9e18082882076aa0dc.zip glibc-41ad5ca60e45c865b6195e9e18082882076aa0dc.tar.gz glibc-41ad5ca60e45c865b6195e9e18082882076aa0dc.tar.bz2 |
stdlib: Remove internal_function attribute
Diffstat (limited to 'stdlib')
-rw-r--r-- | stdlib/fmtmsg.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/stdlib/fmtmsg.c b/stdlib/fmtmsg.c index ac0c3aa..f96e68c 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; |