diff options
author | Rich Felker <dalias@aerifal.cx> | 2013-06-29 12:46:46 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2013-06-29 12:46:46 -0400 |
commit | 780cbbe63ad9e60ef30dbcb2d74271e899dae245 (patch) | |
tree | 3bf8cf88f80325893848c6f460bdb4478c76b60d /src/ldso/dlinfo.c | |
parent | add some comments about the mips ksigaction structure weirdness (diff) | |
download | grovel-780cbbe63ad9e60ef30dbcb2d74271e899dae245.tar.gz grovel-780cbbe63ad9e60ef30dbcb2d74271e899dae245.tar.xz |
implement minimal dlinfo function
Diffstat (limited to 'src/ldso/dlinfo.c')
-rw-r--r-- | src/ldso/dlinfo.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ldso/dlinfo.c b/src/ldso/dlinfo.c new file mode 100644 index 00000000..4748eaf8 --- /dev/null +++ b/src/ldso/dlinfo.c @@ -0,0 +1,8 @@ +#include <dlfcn.h> + +int __dlinfo(void *, int, void *); + +int dlinfo(void *dso, int req, void *res) +{ + return __dlinfo(dso, req, res); +} |