diff options
Diffstat (limited to 'include/elf/external.h')
-rw-r--r-- | include/elf/external.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/elf/external.h b/include/elf/external.h index 403ee62..a171439 100644 --- a/include/elf/external.h +++ b/include/elf/external.h @@ -258,4 +258,19 @@ typedef struct unsigned char si_flags[2]; } Elf_External_Syminfo; + +/* This structure appears on the stack and in NT_AUXV core file notes. */ +typedef struct +{ + unsigned char a_type[4]; + unsigned char a_val[4]; +} Elf32_External_Auxv; + +typedef struct +{ + unsigned char a_type[8]; + unsigned char a_val[8]; +} Elf64_External_Auxv; + + #endif /* _ELF_EXTERNAL_H */ |