From a0b1835621f7d3ed9fc0e142550cf29720615096 Mon Sep 17 00:00:00 2001 From: Jari Vetoniemi Date: Tue, 20 Feb 2018 08:44:42 +0200 Subject: Messy commit of hacks and implementations --- src/linker/dlfcn.h | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/linker/dlfcn.h (limited to 'src/linker') diff --git a/src/linker/dlfcn.h b/src/linker/dlfcn.h new file mode 100644 index 0000000..7fb1c8b --- /dev/null +++ b/src/linker/dlfcn.h @@ -0,0 +1,7 @@ +#pragma once + +void dl_parse_library_path(const char *path, char *delim); +void *bionic_dlopen(const char *filename, int flag); +const char *bionic_dlerror(void); +void *bionic_dlsym(void *handle, const char *symbol); +int bionic_dlclose(void *handle); -- cgit v1.2.3