diff options
author | Joakim Tjernlund <joakim.tjernlund@transmode.se> | 2004-08-25 15:19:00 +0000 |
---|---|---|
committer | Joakim Tjernlund <joakim.tjernlund@transmode.se> | 2004-08-25 15:19:00 +0000 |
commit | ac5506822324b3734549fb5633166af3d5eb9365 (patch) | |
tree | 6450383acf55c7aeb84986c40497439953c1b220 /ldso/include/dl-elf.h | |
parent | 8e4a1b8a993e8323f39dbc8f66a14ed0319259ad (diff) |
Patch from Stefan Allius:
Remove unused function parameter in ldso.
Remove echo option '-e' since it is not supported on Solaris.
Diffstat (limited to 'ldso/include/dl-elf.h')
-rw-r--r-- | ldso/include/dl-elf.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ldso/include/dl-elf.h b/ldso/include/dl-elf.h index 28f98dccb..f1213d1b3 100644 --- a/ldso/include/dl-elf.h +++ b/ldso/include/dl-elf.h @@ -59,11 +59,11 @@ static inline void _dl_unmap_cache(void) { } /* Function prototypes for non-static stuff in readelflib1.c */ extern int _dl_parse_copy_information(struct dyn_elf *rpnt, - unsigned long rel_addr, unsigned long rel_size, int type); + unsigned long rel_addr, unsigned long rel_size); extern void _dl_parse_lazy_relocation_information(struct dyn_elf *rpnt, - unsigned long rel_addr, unsigned long rel_size, int type); + unsigned long rel_addr, unsigned long rel_size); extern int _dl_parse_relocation_information(struct dyn_elf *rpnt, - unsigned long rel_addr, unsigned long rel_size, int type); + unsigned long rel_addr, unsigned long rel_size); extern struct elf_resolve * _dl_load_shared_library(int secure, struct dyn_elf **rpnt, struct elf_resolve *tpnt, char *full_libname, int trace_loaded_objects); |