diff options
author | Ard Biesheuvel <ard.biesheuvel@gmail.com> | 2012-08-21 14:47:58 +0200 |
---|---|---|
committer | Ard Biesheuvel <ard.biesheuvel@gmail.com> | 2012-08-22 20:45:26 +0200 |
commit | 0a150ead18019c0e4e59417ae3c5e8e0d7d2e4f4 (patch) | |
tree | 0eb50d447d6cc6f5d8084e4f0dc452c8bc2d74d8 /libc/bionic/libc_init_common.h | |
parent | 404e28ff8c3352a4fa290ae7769922db0172008e (diff) | |
download | bionic-0a150ead18019c0e4e59417ae3c5e8e0d7d2e4f4.zip bionic-0a150ead18019c0e4e59417ae3c5e8e0d7d2e4f4.tar.gz bionic-0a150ead18019c0e4e59417ae3c5e8e0d7d2e4f4.tar.bz2 |
libc: remove ctors/dtors sections
None of the supported ARCHs actually populate these sections,
so there is no point in keeping them in the binaries.
Change-Id: I21a364f510118ac1114e1b49c53ec8c895c6bc6b
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@gmail.com>
Diffstat (limited to 'libc/bionic/libc_init_common.h')
-rw-r--r-- | libc/bionic/libc_init_common.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libc/bionic/libc_init_common.h b/libc/bionic/libc_init_common.h index 35050a1..c55594b 100644 --- a/libc/bionic/libc_init_common.h +++ b/libc/bionic/libc_init_common.h @@ -35,9 +35,6 @@ typedef struct void (**preinit_array)(void); void (**init_array)(void); void (**fini_array)(void); -#ifndef __i386__ - void (**ctors_array)(void); -#endif } structors_array_t; extern void __libc_init_common(uintptr_t *elfdata); |