From: Roland McGrath Date: Mon, 18 Jul 2005 01:42:48 +0000 (+0000) Subject: 2005-05-22 Dmitry V. Levin X-Git-Tag: cvs/fedora-glibc-2_3-20050718T0425~48 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=278a5107898935732e43be70f2c3e68de4b31162;p=thirdparty%2Fglibc.git 2005-05-22 Dmitry V. Levin [BZ #961] * io/sys/sendfile.h: Remove __nonnull from sendfile and sendfile64 declarations. --- diff --git a/io/sys/sendfile.h b/io/sys/sendfile.h index 24256b5414d..4c1367b6be7 100644 --- a/io/sys/sendfile.h +++ b/io/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_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