summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/sendfile.c
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2006-01-30 15:18:45 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2006-01-30 15:18:45 +0000
commitbda2d7e868b4fe7c098484aea1d0105a55b75fcf (patch)
tree66761c38342f91702a0fcdaa4f9c2b395386d95d /libc/sysdeps/linux/common/sendfile.c
parent412218429dcec26564f260aa318d45cca4a5b69e (diff)
another attempt to fix sendfile64
Diffstat (limited to 'libc/sysdeps/linux/common/sendfile.c')
-rw-r--r--libc/sysdeps/linux/common/sendfile.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/common/sendfile.c b/libc/sysdeps/linux/common/sendfile.c
index fe0629ca3..3439baba8 100644
--- a/libc/sysdeps/linux/common/sendfile.c
+++ b/libc/sysdeps/linux/common/sendfile.c
@@ -15,6 +15,7 @@ _syscall4(ssize_t, sendfile, int, out_fd, int, in_fd, __off_t *, offset,
size_t, count);
#if ! defined __NR_sendfile64 && defined __UCLIBC_HAS_LFS__
+#undef sendfile64
extern __typeof(sendfile) sendfile64;
libc_hidden_proto(sendfile64)
strong_alias(sendfile,sendfile64)