diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-04-24 20:39:51 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-04-24 20:39:51 +0000 |
commit | 4a8caed2ad95e0c07f57051c39fc7bbe81c548d7 (patch) | |
tree | e5712ffa91495c85104e829e31306697897bf839 /ldso/libdl/dlib.c | |
parent | 5c86faa2e23a489b53088ee71f20e08f5fac561c (diff) |
Silence a warning
Diffstat (limited to 'ldso/libdl/dlib.c')
-rw-r--r-- | ldso/libdl/dlib.c | 2 |
1 files changed, 1 insertions, 1 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 |