about summary refs log tree commit diff
path: root/include/dlfcn.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/dlfcn.h')
-rw-r--r--include/dlfcn.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/dlfcn.h b/include/dlfcn.h
index e2f57b53..db26194b 100644
--- a/include/dlfcn.h
+++ b/include/dlfcn.h
@@ -17,6 +17,8 @@ extern "C" {
 #define RTLD_NEXT    ((void *)-1)
 #define RTLD_DEFAULT ((void *)0)
 
+#define RTLD_DI_LINKMAP 2
+
 int    dlclose(void *);
 char  *dlerror(void);
 void  *dlopen(const char *, int);
@@ -30,6 +32,7 @@ typedef struct {
 	void *dli_saddr;
 } Dl_info;
 int dladdr(void *, Dl_info *);
+int dlinfo(void *, int, void *);
 #endif
 
 #ifdef __cplusplus