diff options
Diffstat (limited to 'libc/sysdeps/linux/x86_64/crtn.S')
-rw-r--r-- | libc/sysdeps/linux/x86_64/crtn.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/x86_64/crtn.S b/libc/sysdeps/linux/x86_64/crtn.S index f68f9d0a3..5b110d967 100644 --- a/libc/sysdeps/linux/x86_64/crtn.S +++ b/libc/sysdeps/linux/x86_64/crtn.S @@ -4,7 +4,7 @@ .section .init .global _init -.type _init, @function +.type _init, %function addq $8, %rsp ret .size _init,.-_init @@ -12,7 +12,7 @@ .section .fini .global _fini -.type _fini, @function +.type _fini, %function addq $8, %rsp ret .size _fini, .-_fini |