From 67b8585deac9a0a6c8f8d5c64d377ab0f1acb3a3 Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Sat, 16 Apr 2011 00:41:41 +0200 Subject: llseek.c: use off64_t instead of loff_t as in header Signed-off-by: Peter S. Mazinger Signed-off-by: Bernhard Reutner-Fischer --- libc/sysdeps/linux/common/llseek.c | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'libc/sysdeps/linux/common/llseek.c') diff --git a/libc/sysdeps/linux/common/llseek.c b/libc/sysdeps/linux/common/llseek.c index 8b7cb7525..333770af0 100644 --- a/libc/sysdeps/linux/common/llseek.c +++ b/libc/sysdeps/linux/common/llseek.c @@ -8,8 +8,9 @@ */ #include <_lfs_64.h> -#include #include +#include +#include /* Newer kernel ports have llseek() instead of _llseek() */ #if !defined __NR__llseek && defined __NR_llseek @@ -17,16 +18,16 @@ #endif #ifdef __NR__llseek -loff_t lseek64(int fd, loff_t offset, int whence) +off64_t lseek64(int fd, off64_t offset, int whence) { - loff_t result; - return (loff_t)INLINE_SYSCALL(_llseek, 5, fd, (off_t) (offset >> 32), + off64_t result; + return (off64_t)INLINE_SYSCALL(_llseek, 5, fd, (off_t) (offset >> 32), (off_t) (offset & 0xffffffff), &result, whence) ?: result; } #else -loff_t lseek64(int fd, loff_t offset, int whence) +off64_t lseek64(int fd, off64_t offset, int whence) { - return (loff_t)lseek(fd, (off_t) (offset), whence); + return (off64_t)lseek(fd, (off_t) (offset), whence); } #endif #ifndef __LINUXTHREADS_OLD__ -- cgit v1.2.3