diff options
Diffstat (limited to 'elf')
-rw-r--r-- | elf/dl-tunables.c | 2 | ||||
-rw-r--r-- | elf/dl-tunables.h | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/elf/dl-tunables.c b/elf/dl-tunables.c index 8d72e26..b6e6b3d 100644 --- a/elf/dl-tunables.c +++ b/elf/dl-tunables.c @@ -470,3 +470,5 @@ cb: if (callback) callback (&cur->val); } + +rtld_hidden_def (__tunable_set_val) diff --git a/elf/dl-tunables.h b/elf/dl-tunables.h index f33adfb..20ee512 100644 --- a/elf/dl-tunables.h +++ b/elf/dl-tunables.h @@ -69,6 +69,9 @@ typedef struct _tunable tunable_t; extern void __tunables_init (char **); extern void __tunable_set_val (tunable_id_t, void *, tunable_callback_t); +rtld_hidden_proto (__tunables_init) +rtld_hidden_proto (__tunable_set_val) + /* Check if the tunable has been set to a non-default value and if it is, copy it over into __VAL. */ # define TUNABLE_SET_VAL(__id,__val) \ |