am d7faff47: Merge "Added struct Elf32_auxv_t and Elf64_auxv_t"

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

View File

@@ -54,5 +54,19 @@ enum {
#include <sys/exec_elf.h> #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 */ #endif /* _ELF_H */