mirror of git://git.musl-libc.org/musl
14 lines
192 B
C
14 lines
192 B
C
|
__asm__("\
|
||
|
.text \n\
|
||
|
.global _start \n\
|
||
|
_start: \n\
|
||
|
xor %ebp,%ebp \n\
|
||
|
mov %esp,%eax \n\
|
||
|
and $-16,%esp \n\
|
||
|
push %eax \n\
|
||
|
push %eax \n\
|
||
|
push %eax \n\
|
||
|
push %eax \n\
|
||
|
call __cstart \n\
|
||
|
");
|