diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-30 15:18:45 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-30 15:18:45 +0000 |
commit | bda2d7e868b4fe7c098484aea1d0105a55b75fcf (patch) | |
tree | 66761c38342f91702a0fcdaa4f9c2b395386d95d | |
parent | 412218429dcec26564f260aa318d45cca4a5b69e (diff) | |
download | uClibc-alpine-bda2d7e868b4fe7c098484aea1d0105a55b75fcf.tar.bz2 uClibc-alpine-bda2d7e868b4fe7c098484aea1d0105a55b75fcf.tar.xz |
another attempt to fix sendfile64
-rw-r--r-- | libc/sysdeps/linux/common/sendfile.c | 1 |
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) |