From b1445ae7437845ed534b2e5ecb7ea43ba5caef51 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Sun, 2 Aug 2015 12:35:48 +0800 Subject: [PATCH] dyld: style --- software/libdyld/dyld.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/software/libdyld/dyld.c b/software/libdyld/dyld.c index da531b6d1..06512d147 100644 --- a/software/libdyld/dyld.c +++ b/software/libdyld/dyld.c @@ -5,7 +5,8 @@ static int fixup_rela(struct dyld_info *info, Elf32_Rela *rela, Elf32_Addr (*resolve_import)(const char *), - const char **error_out) { + const char **error_out) +{ Elf32_Sym *sym = NULL; if(ELF32_R_SYM(rela->r_info) != 0) sym = &info->symtab[ELF32_R_SYM(rela->r_info)]; @@ -51,7 +52,8 @@ static int fixup_rela(struct dyld_info *info, Elf32_Rela *rela, int dyld_load(void *shlib, Elf32_Addr base, Elf32_Addr (*resolve_import)(const char *), - struct dyld_info *info, const char **error_out) { + struct dyld_info *info, const char **error_out) +{ Elf32_Ehdr *ehdr = (Elf32_Ehdr *)shlib; const unsigned char expected_ident[EI_NIDENT] = { @@ -162,7 +164,8 @@ static unsigned long elf_hash(const unsigned char *name) return h; } -void *dyld_lookup(const char *symbol, struct dyld_info *info) { +void *dyld_lookup(const char *symbol, struct dyld_info *info) +{ unsigned hash = elf_hash((const unsigned char*) symbol); unsigned index = info->hash.bucket[hash % info->hash.nbucket]; while(strcmp(&info->strtab[info->symtab[index].st_name], symbol)) {