mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
215 B
12 lines
215 B
__asm__(
|
|
".text \n"
|
|
".global " START " \n"
|
|
START ": \n"
|
|
" xor %rbp,%rbp \n"
|
|
" mov %rsp,%rdi \n"
|
|
".weak _DYNAMIC \n"
|
|
".hidden _DYNAMIC \n"
|
|
" lea _DYNAMIC(%rip),%rsi \n"
|
|
" andq $-16,%rsp \n"
|
|
" call " START "_c \n"
|
|
);
|
|
|