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