diff options
Diffstat (limited to 'nss')
-rw-r--r-- | nss/getXXbyYY_r.c | 6 | ||||
-rw-r--r-- | nss/getXXent_r.c | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/nss/getXXbyYY_r.c b/nss/getXXbyYY_r.c index ecd28ad2c2..12d3cd6705 100644 --- a/nss/getXXbyYY_r.c +++ b/nss/getXXbyYY_r.c @@ -107,13 +107,17 @@ # define AF_VAR_P NULL #endif +#ifndef NSS_attribute_hidden +# define NSS_attribute_hidden +#endif + /* Type of the lookup function we need here. */ typedef enum nss_status (*lookup_function) (ADD_PARAMS, LOOKUP_TYPE *, char *, size_t, int * H_ERRNO_PARM); /* The lookup function for the first entry of this service. */ extern int DB_LOOKUP_FCT (service_user **nip, const char *name, void **fctp) - internal_function; + internal_function NSS_attribute_hidden; /* Interval in which we transfer retry to contact the NSCD. */ #define NSS_NSCD_RETRY 100 diff --git a/nss/getXXent_r.c b/nss/getXXent_r.c index e1a2236009..c2ea5b57af 100644 --- a/nss/getXXent_r.c +++ b/nss/getXXent_r.c @@ -92,6 +92,10 @@ # define NEED__RES 0 #endif +#ifndef NSS_attribute_hidden +# define NSS_attribute_hidden +#endif + /* This handle for the NSS data base is shared between all set/get/endXXXent functions. */ static service_user *nip; @@ -112,7 +116,7 @@ __libc_lock_define_initialized (static, lock) /* The lookup function for the first entry of this service. */ extern int DB_LOOKUP_FCT (service_user **nip, const char *name, void **fctp) - internal_function; + internal_function NSS_attribute_hidden; void SETFUNC_NAME (STAYOPEN) |