diff options
Diffstat (limited to 'ldso')
-rw-r--r-- | ldso/libdl/dlib.c | 2 | ||||
-rw-r--r-- | ldso/libdl/libdl.c | 2 | ||||
-rw-r--r-- | ldso/util/ldd.c | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/ldso/libdl/dlib.c b/ldso/libdl/dlib.c index 545b6745f..5fd411505 100644 --- a/ldso/libdl/dlib.c +++ b/ldso/libdl/dlib.c @@ -485,7 +485,7 @@ static void foobar() _dl_exit(1); } -static int foobar1 = (int)foobar; /* Use as pointer */ +static int __attribute__((unused)) foobar1 = (int)foobar; /* Use as pointer */ #if 1 #pragma weak _dl_find_hash = foobar diff --git a/ldso/libdl/libdl.c b/ldso/libdl/libdl.c index 545b6745f..5fd411505 100644 --- a/ldso/libdl/libdl.c +++ b/ldso/libdl/libdl.c @@ -485,7 +485,7 @@ static void foobar() _dl_exit(1); } -static int foobar1 = (int)foobar; /* Use as pointer */ +static int __attribute__((unused)) foobar1 = (int)foobar; /* Use as pointer */ #if 1 #pragma weak _dl_find_hash = foobar diff --git a/ldso/util/ldd.c b/ldso/util/ldd.c index 62c479ba3..640da41f0 100644 --- a/ldso/util/ldd.c +++ b/ldso/util/ldd.c @@ -28,6 +28,8 @@ #include "../config.h" #include "readelf.h" +extern int uselib(const char *library); + #ifdef __GNUC__ void warn(char *fmt, ...) __attribute__ ((format (printf, 1, 2))); void error(char *fmt, ...) __attribute__ ((format (printf, 1, 2))); |