From 920746cbb5d18d8aef284d3fe71a57cd52509117 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Tue, 14 Nov 2023 12:12:10 -0500 Subject: disable all functions; will strategically reenable them as tested --- src/dlfcn/dlclose.c | 5 +++++ src/dlfcn/dlerror.c | 5 +++++ src/dlfcn/dlopen.c | 5 +++++ src/dlfcn/dlsym.c | 5 +++++ 4 files changed, 20 insertions(+) (limited to 'src/dlfcn') 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 #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 #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 #include #include @@ -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 #include "_dlfcn.h" @@ -11,3 +13,6 @@ void *dlsym(void *restrict handle, const char *restrict name) /* XOPEN(500) */ + + +#endif -- cgit v1.2.1