From 2e08b7b87e47d9a430c1de47f684ec7c1d410c4f Mon Sep 17 00:00:00 2001 From: David Schleef Date: Sun, 1 Dec 2002 00:57:23 +0000 Subject: Make ldd work even more like GNU ldd by appending dummy load addresses --- ldso/util/ldd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ldso') diff --git a/ldso/util/ldd.c b/ldso/util/ldd.c index 951c839fb..7fdeaf5b0 100644 --- a/ldso/util/ldd.c +++ b/ldso/util/ldd.c @@ -535,10 +535,10 @@ int main( int argc, char** argv) } for (cur = lib_list; cur; cur=cur->next) { got_em_all=1; - printf("\t%s => %s\n", cur->name, cur->path); + printf("\t%s => %s (0x00000000)\n", cur->name, cur->path); } if (interp_dir && got_em_all==1) - printf("\t%s => %s\n", interp, interp); + printf("\t%s => %s (0x00000000)\n", interp, interp); if (got_em_all==0) printf("\tnot a dynamic executable\n"); } -- cgit v1.2.3