Skip to content

Commit

Permalink
dyld: style
Browse files Browse the repository at this point in the history
  • Loading branch information
sbourdeauducq committed Aug 2, 2015
1 parent 6a1b0b3 commit b1445ae
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions software/libdyld/dyld.c
Expand Up @@ -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)];
Expand Down Expand Up @@ -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] = {
Expand Down Expand Up @@ -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)) {
Expand Down

0 comments on commit b1445ae

Please sign in to comment.