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