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/crt1.S | |
parent | 629ec28ed6473baf96d26fd1d395496c634bc921 (diff) |
use % as the function marker instead of @
Diffstat (limited to 'libc/sysdeps/linux/x86_64/crt1.S')
-rw-r--r-- | libc/sysdeps/linux/x86_64/crt1.S | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libc/sysdeps/linux/x86_64/crt1.S b/libc/sysdeps/linux/x86_64/crt1.S index 49ec969a0..ddd1e5683 100644 --- a/libc/sysdeps/linux/x86_64/crt1.S +++ b/libc/sysdeps/linux/x86_64/crt1.S @@ -60,19 +60,19 @@ .text .global _start -.type _start,@function +.type _start,%function #if defined(__UCLIBC_CTOR_DTOR__) -.type _init,@function -.type _fini,@function +.type _init,%function +.type _fini,%function #else .weak _init .weak _fini #endif -.type __uClibc_main,@function +.type __uClibc_main,%function /* Stick in a dummy reference to main(), so that if an application * is linking when the main() function is in a static library (.a) * we can be sure that main() actually gets linked in */ -.type main,@function +.type main,%function _start: /* Clear the frame pointer. The ABI suggests this be done, to mark |