diff options
Diffstat (limited to 'libc/arch-x86/syscalls/__sigsuspend.S')
-rw-r--r-- | libc/arch-x86/syscalls/__sigsuspend.S | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/libc/arch-x86/syscalls/__sigsuspend.S b/libc/arch-x86/syscalls/__sigsuspend.S index 64de756fd..b09f8727c 100644 --- a/libc/arch-x86/syscalls/__sigsuspend.S +++ b/libc/arch-x86/syscalls/__sigsuspend.S @@ -1,12 +1,8 @@ /* autogenerated by gensyscalls.py */ +#include <machine/asm.h> #include <sys/linux-syscalls.h> - .text - .type __sigsuspend, @function - .globl __sigsuspend - .align 4 - -__sigsuspend: +ENTRY(__sigsuspend) pushl %ebx pushl %ecx pushl %edx @@ -27,3 +23,4 @@ __sigsuspend: popl %ecx popl %ebx ret +END(__sigsuspend) |