diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/readahead.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/readahead.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sysdeps/unix/sysv/linux/readahead.c b/sysdeps/unix/sysv/linux/readahead.c index 33ea7315d5..18e48dafe4 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 Free Software Foundation, Inc. + Copyright (C) 2002,2003 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 @@ -26,10 +26,6 @@ #ifdef __NR_readahead -extern int __syscall_readahead (int fd, off_t offset_hi, off_t offset_lo, - size_t count); - - ssize_t __readahead (int fd, loff_t offset, size_t count) { |