fix previous commit that broke sigreturn. looks like the asm is needed.
[musl] / src / signal / i386 / restore.s
1 .global __restore
2 .type __restore,%function
3 __restore:
4         popl %eax
5         movl $119, %eax
6         int $0x80
7 .size __restore,.-__restore
8
9 .global __restore_rt
10 .type __restore_rt,%function
11 __restore_rt:
12         movl $173, %eax
13         int $0x80
14 .size __restore_rt,.-__restore_rt
15