diff options
author | Florian Weimer <fweimer@redhat.com> | 2019-06-28 10:15:30 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2019-06-28 10:15:38 +0200 |
commit | 17432d7150bdab3bce2ea66c70ad6c920f54077a (patch) | |
tree | 40b7cdb0bc63aeadf880368c1bdf1918d6e159d7 /support/xdlfcn.h | |
parent | 5a659ccc0ec217ab02a4c273a1f6d346a359560a (diff) | |
download | glibc-17432d7150bdab3bce2ea66c70ad6c920f54077a.tar.gz glibc-17432d7150bdab3bce2ea66c70ad6c920f54077a.tar.xz glibc-17432d7150bdab3bce2ea66c70ad6c920f54077a.zip |
support: Add xdlvsym function
Diffstat (limited to 'support/xdlfcn.h')
-rw-r--r-- | support/xdlfcn.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/support/xdlfcn.h b/support/xdlfcn.h index c9cd810a8a..7f8d4930fc 100644 --- a/support/xdlfcn.h +++ b/support/xdlfcn.h @@ -27,6 +27,7 @@ __BEGIN_DECLS 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 |