Add definitions of Elf32_Sxword and ELFXX_R_INFO
Bug: http://b/17056684 Change-Id: If35302245ac3ab40d1c80fb2b04620778c114f87 (cherry picked from commit ce16a53d393512336f30c21a244afd70b7d57cf6)
This commit is contained in:
parent
af7e806cec
commit
f41ed6e549
@ -34,6 +34,11 @@
|
||||
|
||||
#include <machine/elf_machdep.h>
|
||||
|
||||
#define ELF32_R_INFO(sym, type) ((((Elf32_Word)sym) << 8) | ((type) & 0xff))
|
||||
#define ELF64_R_INFO(sym, type) ((((Elf64_Xword)sym) << 32) | ((type) & 0xffffffff))
|
||||
|
||||
typedef __s64 Elf32_Sxword;
|
||||
|
||||
typedef struct {
|
||||
__u32 a_type;
|
||||
union {
|
||||
|
Loading…
x
Reference in New Issue
Block a user