aboutsummaryrefslogtreecommitdiff
path: root/support/xdlfcn.h
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2019-02-07 09:02:00 +0100
committerFlorian Weimer <fweimer@redhat.com>2019-02-07 09:02:01 +0100
commit94b63e66206a9ad38872a9136a623ce73cf7c858 (patch)
tree1a6714d4d45750c8c424202f797b004e62a89c21 /support/xdlfcn.h
parentc2d8f0b704c2b828bcd8d517a2376c0240c73c09 (diff)
downloadglibc-94b63e66206a9ad38872a9136a623ce73cf7c858.zip
glibc-94b63e66206a9ad38872a9136a623ce73cf7c858.tar.gz
glibc-94b63e66206a9ad38872a9136a623ce73cf7c858.tar.bz2
support: Implement xdlmopen
Put xdlmopen into its own file, to avoid disturbing static linking tests (where dlmopen pulls in additional code).
Diffstat (limited to 'support/xdlfcn.h')
-rw-r--r--support/xdlfcn.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/support/xdlfcn.h b/support/xdlfcn.h
index 559281f..c9cd810 100644
--- a/support/xdlfcn.h
+++ b/support/xdlfcn.h
@@ -25,10 +25,10 @@ __BEGIN_DECLS
/* Each of these terminates process on failure with relevant error message. */
void *xdlopen (const char *filename, int flags);
+void *xdlmopen (Lmid_t lmid, const char *filename, int flags);
void *xdlsym (void *handle, const char *symbol);
void xdlclose (void *handle);
-
__END_DECLS
#endif /* SUPPORT_DLOPEN_H */