From e1d2ae8d217e50551802f3906099c8adc9f0811e Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Sun, 13 Aug 2017 21:11:38 +0200 Subject: NPTL: Remove internal_function from stack marking functions These are called across DSO boundaries and therefore should use the ABI calling convention. --- elf/dl-support.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'elf/dl-support.c') diff --git a/elf/dl-support.c b/elf/dl-support.c index c22be854f4..48340f7959 100644 --- a/elf/dl-support.c +++ b/elf/dl-support.c @@ -181,8 +181,7 @@ ElfW(Word) _dl_stack_flags = DEFAULT_STACK_PERMS; /* If loading a shared object requires that we make the stack executable when it was not, we do it by calling this function. It returns an errno code or zero on success. */ -int (*_dl_make_stack_executable_hook) (void **) internal_function - = _dl_make_stack_executable; +int (*_dl_make_stack_executable_hook) (void **) = _dl_make_stack_executable; /* Function in libpthread to wait for termination of lookups. */ -- cgit 1.4.1