chiark / gitweb /
klibc: add missing files
[elogind.git] / klibc / klibc / arch / i386 / sigreturn.S
1 #
2 # arch/i386/sigreturn.S
3 #
4
5 #include <asm/unistd.h>
6
7         .text
8         .align 4
9         .globl __sigreturn
10         .type __sigreturn,@function
11 __sigreturn:
12         pop     %eax            # Have no idea why this is needed...
13         movl    $__NR_sigreturn,%eax
14         int     $0x80
15         .size __sigreturn,.-__sigreturn