Merge "Add definitions of Elf32_Sxword and ELFXX_R_INFO"
This commit is contained in:
commit
7d6b8db28e
@ -34,6 +34,11 @@
|
|||||||
|
|
||||||
#include <machine/elf_machdep.h>
|
#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 {
|
typedef struct {
|
||||||
__u32 a_type;
|
__u32 a_type;
|
||||||
union {
|
union {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user