summaryrefslogtreecommitdiff
path: root/support/xdlfcn.h
diff options
context:
space:
mode:
Diffstat (limited to 'support/xdlfcn.h')
-rw-r--r--support/xdlfcn.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/support/xdlfcn.h b/support/xdlfcn.h
index 5ab7494e70..488acf94b4 100644
--- a/support/xdlfcn.h
+++ b/support/xdlfcn.h
@@ -1,5 +1,5 @@
/* Support functionality for using dlopen/dlclose/dlsym.
- Copyright (C) 2017-2018 Free Software Foundation, Inc.
+ Copyright (C) 2017-2019 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#ifndef SUPPORT_DLOPEN_H
#define SUPPORT_DLOPEN_H
@@ -25,10 +25,11 @@ __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 *xdlvsym (void *handle, const char *symbol, const char *version);
void xdlclose (void *handle);
-
__END_DECLS
#endif /* SUPPORT_DLOPEN_H */