diff options
Diffstat (limited to 'src/dlfcn')
-rw-r--r-- | src/dlfcn/dlclose.c | 5 | ||||
-rw-r--r-- | src/dlfcn/dlerror.c | 5 | ||||
-rw-r--r-- | src/dlfcn/dlopen.c | 5 | ||||
-rw-r--r-- | src/dlfcn/dlsym.c | 5 |
4 files changed, 20 insertions, 0 deletions
diff --git a/src/dlfcn/dlclose.c b/src/dlfcn/dlclose.c index cfe43112..9189caec 100644 --- a/src/dlfcn/dlclose.c +++ b/src/dlfcn/dlclose.c @@ -1,3 +1,5 @@ +#if 0 + #include <dlfcn.h> #include "_dlfcn.h" @@ -11,3 +13,6 @@ int dlclose(void *handle) /* XOPEN(500) */ + + +#endif diff --git a/src/dlfcn/dlerror.c b/src/dlfcn/dlerror.c index fb1dc0e6..c2d26dcd 100644 --- a/src/dlfcn/dlerror.c +++ b/src/dlfcn/dlerror.c @@ -1,3 +1,5 @@ +#if 0 + #include <dlfcn.h> #include "_dlfcn.h" @@ -10,3 +12,6 @@ char *dlerror(void) /* XOPEN(500) */ + + +#endif diff --git a/src/dlfcn/dlopen.c b/src/dlfcn/dlopen.c index f67e51ff..a8929781 100644 --- a/src/dlfcn/dlopen.c +++ b/src/dlfcn/dlopen.c @@ -1,3 +1,5 @@ +#if 0 + #include <dlfcn.h> #include <fcntl.h> #include <stdlib.h> @@ -32,3 +34,6 @@ void *dlopen(const char *file, int mode) /* XOPEN(500) */ + + +#endif diff --git a/src/dlfcn/dlsym.c b/src/dlfcn/dlsym.c index 1648fdbc..f4afe83e 100644 --- a/src/dlfcn/dlsym.c +++ b/src/dlfcn/dlsym.c @@ -1,3 +1,5 @@ +#if 0 + #include <dlfcn.h> #include "_dlfcn.h" @@ -11,3 +13,6 @@ void *dlsym(void *restrict handle, const char *restrict name) /* XOPEN(500) */ + + +#endif |