diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-07-06 01:24:17 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-07-06 01:24:17 +0000 |
commit | 47b3efda36beee1ce272237f77b7c4cc62ed55a7 (patch) | |
tree | 917e36e253fee5b27c900b6a7d8ac05ea5176840 /libc/sysdeps/linux/x86_64/crtn.S | |
parent | 629ec28ed6473baf96d26fd1d395496c634bc921 (diff) |
use % as the function marker instead of @
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 |