Merge "Added struct Elf32_auxv_t and Elf64_auxv_t"
This commit is contained in:
@@ -54,5 +54,19 @@ enum {
|
||||
|
||||
#include <sys/exec_elf.h>
|
||||
|
||||
typedef struct {
|
||||
uint32_t a_type;
|
||||
union {
|
||||
uint32_t a_val;
|
||||
} a_un;
|
||||
} Elf32_auxv_t;
|
||||
|
||||
typedef struct {
|
||||
uint64_t a_type;
|
||||
union {
|
||||
uint64_t a_val;
|
||||
} a_un;
|
||||
} Elf64_auxv_t;
|
||||
|
||||
#endif /* _ELF_H */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user