aboutsummaryrefslogtreecommitdiff
path: root/src/common/android/include/elf.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/android/include/elf.h')
-rw-r--r--src/common/android/include/elf.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/common/android/include/elf.h b/src/common/android/include/elf.h
index b2a28df4..e6f0c672 100644
--- a/src/common/android/include/elf.h
+++ b/src/common/android/include/elf.h
@@ -109,17 +109,6 @@ typedef struct {
} Elf64_Dyn;
-// __WORDSIZE is GLibc-specific and used by Google Breakpad on Linux.
-#ifndef __WORDSIZE
-#if defined(__i386__) || defined(__ARM_EABI__) || defined(__mips__)
-#define __WORDSIZE 32
-#elif defined(__x86_64__) || defined(__aarch64__)
-#define __WORDSIZE 64
-#else
-#error "Unsupported Android CPU ABI"
-#endif
-#endif
-
// The Android headers don't always define this constant.
#ifndef EM_X86_64
#define EM_X86_64 62