diff options
Diffstat (limited to 'libc/sysdeps/linux/x86_64/crtn.S')
-rw-r--r-- | libc/sysdeps/linux/x86_64/crtn.S | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/libc/sysdeps/linux/x86_64/crtn.S b/libc/sysdeps/linux/x86_64/crtn.S index 292e499a7..f68f9d0a3 100644 --- a/libc/sysdeps/linux/x86_64/crtn.S +++ b/libc/sysdeps/linux/x86_64/crtn.S @@ -2,18 +2,17 @@ .file "initfini.c" - .section .init -.globl _init -.type _init, @function - addq $8, %rsp +.global _init +.type _init, @function + addq $8, %rsp ret -.size _init, .-_init +.size _init,.-_init .section .fini -.globl _fini -.type _fini, @function - addq $8, %rsp +.global _fini +.type _fini, @function + addq $8, %rsp ret -.size _fini, .-_fini +.size _fini, .-_fini |