diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/readahead.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/readahead.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sysdeps/unix/sysv/linux/readahead.c b/sysdeps/unix/sysv/linux/readahead.c index 18e48dafe4..dc628b2b2c 100644 --- a/sysdeps/unix/sysv/linux/readahead.c +++ b/sysdeps/unix/sysv/linux/readahead.c @@ -1,5 +1,5 @@ /* Provide kernel hint to read ahead. - Copyright (C) 2002,2003 Free Software Foundation, Inc. + Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -18,6 +18,7 @@ 02111-1307 USA. */ #include <errno.h> +#include <fcntl.h> #include <sys/types.h> #include <sysdep.h> @@ -27,14 +28,14 @@ #ifdef __NR_readahead ssize_t -__readahead (int fd, loff_t offset, size_t count) +__readahead (int fd, off64_t offset, size_t count) { return INLINE_SYSCALL (readahead, 4, fd, (off_t) (offset >> 32), (off_t) (offset & 0xffffffff), count); } #else ssize_t -__readahead (int fd, loff_t offset, size_t count) +__readahead (int fd, off64_t offset, size_t count) { __set_errno (ENOSYS); return -1; |