mirror of
https://git.musl-libc.org/git/musl
synced 2025-01-24 23:22:04 +03:00
10 lines
133 B
C
10 lines
133 B
C
__asm__("\
|
|
.text \n\
|
|
.global _start \n\
|
|
_start: \n\
|
|
xor %rbp,%rbp \n\
|
|
mov %rsp,%rdi \n\
|
|
andq $-16,%rsp \n\
|
|
call __cstart \n\
|
|
");
|