Skip to content

Commit d7faff4

Browse files
Andrew HsiehGerrit Code Review
Andrew Hsieh
authored and
Gerrit Code Review
committed
Merge "Added struct Elf32_auxv_t and Elf64_auxv_t"
2 parents 342a2ae + c4e201a commit d7faff4

File tree

1 file changed

+14
-0
lines changed
  • ndk/platforms/android-3/include

1 file changed

+14
-0
lines changed

ndk/platforms/android-3/include/elf.h

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,19 @@ enum {
5454

5555
#include <sys/exec_elf.h>
5656

57+
typedef struct {
58+
uint32_t a_type;
59+
union {
60+
uint32_t a_val;
61+
} a_un;
62+
} Elf32_auxv_t;
63+
64+
typedef struct {
65+
uint64_t a_type;
66+
union {
67+
uint64_t a_val;
68+
} a_un;
69+
} Elf64_auxv_t;
70+
5771
#endif /* _ELF_H */
5872

0 commit comments

Comments
 (0)