diff options
author | Florian Weimer <fweimer@redhat.com> | 2017-08-31 15:56:32 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2017-08-31 15:59:06 +0200 |
commit | 75b3047eac76779f4e7902a9f47a6410bfdcc32f (patch) | |
tree | 532e0ed357695f1309487e53fd493ee1df3eeafb /nss/nsswitch.c | |
parent | 0c71122c0cee483a4e6abcdbe78a1595eefe86e2 (diff) | |
download | glibc-75b3047eac76779f4e7902a9f47a6410bfdcc32f.tar.gz |
NSS: Remove internal_function function attribute
Diffstat (limited to 'nss/nsswitch.c')
-rw-r--r-- | nss/nsswitch.c | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/nss/nsswitch.c b/nss/nsswitch.c index 834bef6f9c..8a146b956f 100644 --- a/nss/nsswitch.c +++ b/nss/nsswitch.c @@ -42,13 +42,12 @@ #include <sysdep.h> /* Prototypes for the local functions. */ -static name_database *nss_parse_file (const char *fname) internal_function; -static name_database_entry *nss_getline (char *line) internal_function; -static service_user *nss_parse_service_list (const char *line) - internal_function; +static name_database *nss_parse_file (const char *fname); +static name_database_entry *nss_getline (char *line); +static service_user *nss_parse_service_list (const char *line); #if !defined DO_STATIC_NSS || defined SHARED static service_library *nss_new_service (name_database *database, - const char *name) internal_function; + const char *name); #endif @@ -532,7 +531,6 @@ libc_hidden_def (__nss_lookup_function) static name_database * -internal_function nss_parse_file (const char *fname) { FILE *fp; @@ -608,7 +606,6 @@ nss_parse_file (const char *fname) `( <source> ( "[" "!"? (<status> "=" <action> )+ "]" )? )*' */ static service_user * -internal_function nss_parse_service_list (const char *line) { service_user *result = NULL, **nextp = &result; @@ -757,7 +754,6 @@ nss_parse_service_list (const char *line) } static name_database_entry * -internal_function nss_getline (char *line) { const char *name; @@ -799,7 +795,6 @@ nss_getline (char *line) #if !defined DO_STATIC_NSS || defined SHARED static service_library * -internal_function nss_new_service (name_database *database, const char *name) { service_library **currentp = &database->library; |