Merge "Added struct Elf32_auxv_t and Elf64_auxv_t"

This commit is contained in:
Andrew Hsieh
2013-03-14 20:28:20 +00:00
committed by Gerrit Code Review

View File

@@ -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 */