diff options
| author | Jakob Kaivo <jkk@ung.org> | 2023-11-14 12:12:10 -0500 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2023-11-14 12:12:10 -0500 |
| commit | 920746cbb5d18d8aef284d3fe71a57cd52509117 (patch) | |
| tree | 11b4436a58c077f36b1236f0c702af00c763e3f6 /src/dlfcn | |
| parent | f23336fbc3148105c42eebfa44a22d1164828108 (diff) | |
disable all functions; will strategically reenable them as tested
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 |
