summaryrefslogtreecommitdiff
path: root/ldso/ldso/i386/dl-sysdep.h
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-04-30 21:28:56 +0000
committerEric Andersen <andersen@codepoet.org>2001-04-30 21:28:56 +0000
commit22a9e5bbdf43e1086d80341480d0601ee9c6f898 (patch)
tree359f16a4709f1a44915c1beb8f8ae621690fc158 /ldso/ldso/i386/dl-sysdep.h
parent75ee43d1c2bc330fd4ce44c4ee3f5d2d2476e5bf (diff)
Sanitize the calling of _dl_linux_resolver so it can be read by
mere mortals, and so it says what it means. Ick this stuff was nasty. -Erik
Diffstat (limited to 'ldso/ldso/i386/dl-sysdep.h')
-rw-r--r--ldso/ldso/i386/dl-sysdep.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/ldso/ldso/i386/dl-sysdep.h b/ldso/ldso/i386/dl-sysdep.h
index 2011049b1..64d4b7a46 100644
--- a/ldso/ldso/i386/dl-sysdep.h
+++ b/ldso/ldso/i386/dl-sysdep.h
@@ -75,6 +75,7 @@
/* Used for error messages */
#define ELF_TARGET "386"
-extern unsigned int _dl_linux_resolver(int dummy, int i);
+struct elf_resolve;
+extern unsigned int _dl_linux_resolver(struct elf_resolve * tpnt, int reloc_entry);
#define do_rem(result, n, base) result = (n % base)