diff options
Diffstat (limited to 'libc/arch-x86/bionic/crtend.S')
-rw-r--r-- | libc/arch-x86/bionic/crtend.S | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libc/arch-x86/bionic/crtend.S b/libc/arch-x86/bionic/crtend.S new file mode 100644 index 0000000..7f5fb66 --- /dev/null +++ b/libc/arch-x86/bionic/crtend.S @@ -0,0 +1,13 @@ + + .section .preinit_array, "aw" + .long 0 + + .section .init_array, "aw" + .long 0 + + .section .fini_array, "aw" + .long 0 + + .section .ctors, "aw" + .long 0 + |