diff options
author | Florian Weimer <fweimer@redhat.com> | 2017-08-13 21:11:54 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2017-08-13 21:11:54 +0200 |
commit | 3012cfb0d26653cbd6ee0c8e4875d3df806bd473 (patch) | |
tree | 4bb2d288ab6f1f5b472777c3e8fb5040bea8284e /elf/dl-error-skeleton.c | |
parent | 52bcdf267b2c97c90852f1598c8c29d0494cb3b5 (diff) | |
download | glibc-3012cfb0d26653cbd6ee0c8e4875d3df806bd473.tar.gz glibc-3012cfb0d26653cbd6ee0c8e4875d3df806bd473.tar.xz glibc-3012cfb0d26653cbd6ee0c8e4875d3df806bd473.zip |
ld.so: Remove internal_function attribute from various functions
These functions are invoked from other DSOs and should therefore use the standard calling convention.
Diffstat (limited to 'elf/dl-error-skeleton.c')
-rw-r--r-- | elf/dl-error-skeleton.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/elf/dl-error-skeleton.c b/elf/dl-error-skeleton.c index 8de6c87abf..5b0fc8971b 100644 --- a/elf/dl-error-skeleton.c +++ b/elf/dl-error-skeleton.c @@ -104,7 +104,6 @@ _dl_signal_exception (int errcode, struct dl_exception *exception, libc_hidden_def (_dl_signal_exception) void -internal_function _dl_signal_error (int errcode, const char *objname, const char *occation, const char *errstring) { @@ -150,7 +149,6 @@ _dl_signal_cexception (int errcode, struct dl_exception *exception, } void -internal_function _dl_signal_cerror (int errcode, const char *objname, const char *occation, const char *errstring) { @@ -210,7 +208,6 @@ _dl_catch_exception (struct dl_exception *exception, libc_hidden_def (_dl_catch_exception) int -internal_function _dl_catch_error (const char **objname, const char **errstring, bool *mallocedp, void (*operate) (void *), void *args) { @@ -225,7 +222,6 @@ libc_hidden_def (_dl_catch_error) #if DL_ERROR_BOOTSTRAP void -internal_function _dl_receive_error (receiver_fct fct, void (*operate) (void *), void *args) { struct catch *old_catch = catch_hook; |