From de47eb59bb829423b1d0f47ba13099073999b3cb Mon Sep 17 00:00:00 2001 From: Nicolas Planel Date: Wed, 29 Oct 2003 16:07:11 +0000 Subject: Corporate Server 2.1.1 release --- mdk-stage1/dietlibc/lib/pread64.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'mdk-stage1/dietlibc/lib/pread64.c') diff --git a/mdk-stage1/dietlibc/lib/pread64.c b/mdk-stage1/dietlibc/lib/pread64.c index e6ba4d103..6dc93cefa 100644 --- a/mdk-stage1/dietlibc/lib/pread64.c +++ b/mdk-stage1/dietlibc/lib/pread64.c @@ -5,8 +5,9 @@ #ifndef __NO_STAT64 extern size_t __pread(int fd, void *buf, size_t count, off_t a,off_t b); +size_t __libc_pread64(int fd, void *buf, size_t count, off64_t offset); size_t __libc_pread64(int fd, void *buf, size_t count, off64_t offset) { - return __pread(fd,buf,count,__LONG_LONG_PAIR (offset&0xffffffff,offset>>32)); + return __pread(fd,buf,count,__LONG_LONG_PAIR ((off_t)(offset&0xffffffff),(off_t)(offset>>32))); } int pread64(int fd, void *buf, size_t count, off_t offset) __attribute__((weak,alias("__libc_pread64"))); -- cgit v1.2.1