aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/dlfcn.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/dlfcn.h b/include/dlfcn.h
index 955819739a..f875a636ae 100644
--- a/include/dlfcn.h
+++ b/include/dlfcn.h
@@ -4,4 +4,11 @@
/* Now define the internal interfaces. */
extern void *__dlvsym __P ((void *__handle, __const char *__name,
__const char *__version));
+
+extern void *__libc_dlopen __P ((__const char *__name));
+extern void *__libc_dlsym __P ((void *__map, __const char *__name));
+extern int __libc_dlclose __P ((void *__map));
+extern int _dl_addr __P ((const void *address, Dl_info *info))
+ internal_function;
+
#endif