aboutsummaryrefslogtreecommitdiff
path: root/include/dlfcn.h
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2017-08-13 21:11:54 +0200
committerFlorian Weimer <fweimer@redhat.com>2017-08-13 21:11:54 +0200
commit3012cfb0d26653cbd6ee0c8e4875d3df806bd473 (patch)
tree4bb2d288ab6f1f5b472777c3e8fb5040bea8284e /include/dlfcn.h
parent52bcdf267b2c97c90852f1598c8c29d0494cb3b5 (diff)
downloadglibc-3012cfb0d26653cbd6ee0c8e4875d3df806bd473.tar
glibc-3012cfb0d26653cbd6ee0c8e4875d3df806bd473.tar.gz
glibc-3012cfb0d26653cbd6ee0c8e4875d3df806bd473.tar.bz2
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 'include/dlfcn.h')
-rw-r--r--include/dlfcn.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/dlfcn.h b/include/dlfcn.h
index 2524292ebc..51cc1dfde8 100644
--- a/include/dlfcn.h
+++ b/include/dlfcn.h
@@ -43,8 +43,7 @@ libc_hidden_proto (__libc_dlclose)
/* Locate shared object containing the given address. */
#ifdef ElfW
extern int _dl_addr (const void *address, Dl_info *info,
- struct link_map **mapp, const ElfW(Sym) **symbolp)
- internal_function;
+ struct link_map **mapp, const ElfW(Sym) **symbolp);
libc_hidden_proto (_dl_addr)
#endif