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