From a22508d835ca1d7657d5ec41667e466e5e88fd9f Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Mon, 11 Sep 2006 18:40:10 +0000 Subject: The readahead syscall requires LFS/64 bit support --- libc/sysdeps/linux/common/readahead.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'libc') diff --git a/libc/sysdeps/linux/common/readahead.c b/libc/sysdeps/linux/common/readahead.c index 5220b5dc4..3b05a38f5 100644 --- a/libc/sysdeps/linux/common/readahead.c +++ b/libc/sysdeps/linux/common/readahead.c @@ -22,6 +22,9 @@ #include #include #include +#include <_lfs_64.h> + +#ifdef __UCLIBC_HAS_LFS__ #ifdef __NR_readahead @@ -50,3 +53,4 @@ ssize_t readahead(int fd, off64_t offset, size_t count) # endif #endif +#endif /* __UCLIBC_HAS_LFS__ */ -- cgit v1.2.3