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