remove all .size and .type directives for functions from the asm
[musl] / src / internal / i386 / syscall.s
1 .global __syscall
2 __syscall:
3         pushl %ebx
4         pushl %esi
5         pushl %edi
6         pushl %ebp
7         movl 20(%esp),%eax
8         movl 24(%esp),%ebx
9         movl 28(%esp),%ecx
10         movl 32(%esp),%edx
11         movl 36(%esp),%esi
12         movl 40(%esp),%edi
13         movl 44(%esp),%ebp
14         int $128
15         popl %ebp
16         popl %edi
17         popl %esi
18         popl %ebx
19         ret