am 426b6b15: am d7faff47: Merge "Added struct Elf32_auxv_t and Elf64_auxv_t"

* commit '426b6b15a128a30fa55e0e32f4e076dec8f0ed72':
  Added struct Elf32_auxv_t and Elf64_auxv_t
This commit is contained in:
Andrew Hsieh
2013-03-14 13:41:03 -07:00
committed by Android Git Automerger

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