diff options
Diffstat (limited to 'runtime/elf.h')
-rw-r--r-- | runtime/elf.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/elf.h b/runtime/elf.h index 6e007a22e1..60b5248ed0 100644 --- a/runtime/elf.h +++ b/runtime/elf.h @@ -1411,6 +1411,7 @@ struct Elf32_Sym { // BEGIN android-added for <elf.h> compat static inline unsigned char ELF32_ST_TYPE(unsigned char st_info) { return st_info & 0x0f; } +static inline unsigned char ELF64_ST_TYPE(unsigned char st_info) { return st_info & 0x0f; } // END android-added for <elf.h> compat // Symbol table entries for ELF64. |