From 412218429dcec26564f260aa318d45cca4a5b69e Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Mon, 30 Jan 2006 15:04:09 +0000 Subject: Sync w/ glibc --- include/sys/sendfile.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'include') diff --git a/include/sys/sendfile.h b/include/sys/sendfile.h index 5fcfffbbc..4c1367b6b 100644 --- a/include/sys/sendfile.h +++ b/include/sys/sendfile.h @@ -32,19 +32,19 @@ __BEGIN_DECLS case of error. */ #ifndef __USE_FILE_OFFSET64 extern ssize_t sendfile (int __out_fd, int __in_fd, off_t *__offset, - size_t __count) __THROW __nonnull ((3)); + size_t __count) __THROW; #else -# ifdef __REDIRECT -extern ssize_t __REDIRECT (sendfile, +# ifdef __REDIRECT_NTH +extern ssize_t __REDIRECT_NTH (sendfile, (int __out_fd, int __in_fd, __off64_t *__offset, - size_t __count), sendfile64) __nonnull ((3)); + size_t __count), sendfile64); # else # define sendfile sendfile64 # endif #endif #ifdef __USE_LARGEFILE64 extern ssize_t sendfile64 (int __out_fd, int __in_fd, __off64_t *__offset, - size_t __count) __THROW __nonnull ((3)); + size_t __count) __THROW; #endif __END_DECLS -- cgit v1.2.3