summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/posix_fadvise64.c
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2012-03-26 11:25:33 +0200
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2012-03-26 11:25:33 +0200
commit899a2731262c4321f44a0faecf4134f6b6eacc3d (patch)
treeb05956b31b77c122b2a748d4de762f144d6d1edb /libc/sysdeps/linux/common/posix_fadvise64.c
parent3bcd031f97d61a8f732d865a0f4248aed2d191ab (diff)
stubs: unified from future
Future branch extends stubs with ret_enosys_stub. Resolve conflicts, and use superset of future and current master. Adjust posix_fadvise* accordingly. Upon future merge, pick this master version as the final state. Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/sysdeps/linux/common/posix_fadvise64.c')
-rw-r--r--libc/sysdeps/linux/common/posix_fadvise64.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/libc/sysdeps/linux/common/posix_fadvise64.c b/libc/sysdeps/linux/common/posix_fadvise64.c
index e8a530fdf..fa9ff219f 100644
--- a/libc/sysdeps/linux/common/posix_fadvise64.c
+++ b/libc/sysdeps/linux/common/posix_fadvise64.c
@@ -58,13 +58,5 @@ int posix_fadvise64(int fd, __off64_t offset, __off64_t len, int advice)
#error your machine is neither 32 bit or 64 bit ... it must be magical
#endif
-#elif !defined __NR_fadvise64 && defined __UCLIBC_HAS_STUBS__
-/* This is declared as a strong alias in posix_fadvise.c if __NR_fadvise64
- * is defined.
- */
-int posix_fadvise64(int fd, __off64_t offset, __off64_t len, int advice)
-{
- return ENOSYS;
-}
#endif /* __NR_fadvise64_64 */
#endif /* __UCLIBC_HAS_LFS__ */