commit | c620059479c47a78d57086d73726c9adc2f337ad | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Mon Sep 30 18:43:46 2013 -0700 |
committer | Elliott Hughes <enh@google.com> | Mon Sep 30 18:43:46 2013 -0700 |
tree | ef410fffb4d853aaf7dbfee41743c197c4985856 | |
parent | 6dee3b9aeec40bb518c1a29b4462300869a03d8e [diff] [blame] |
Remove 32-bit assumptions from the ELF code. Change-Id: I2c1f3d34c33685799aade8866eec44479ff9f963
diff --git a/libc/include/link.h b/libc/include/link.h index 0edf5df..341fbf1 100644 --- a/libc/include/link.h +++ b/libc/include/link.h
@@ -33,8 +33,7 @@ __BEGIN_DECLS -/* bionic is currently only 32-bit. */ -#define ElfW(type) Elf32_##type +#define ElfW(type) Elf_##type struct dl_phdr_info { ElfW(Addr) dlpi_addr;