diff options
author | Ulrich Drepper <drepper@redhat.com> | 2005-05-23 17:37:21 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2005-05-23 17:37:21 +0000 |
commit | c179df4e9301ba09589aef60a038e259df70b5b9 (patch) | |
tree | 245814951fbffe0e37fc4a8b62955318423bbcaf /io/sys/sendfile.h | |
parent | Based on a patch by Steve Dickson <steved@redhat.com>. (diff) | |
download | glibc-c179df4e9301ba09589aef60a038e259df70b5b9.tar.gz glibc-c179df4e9301ba09589aef60a038e259df70b5b9.tar.bz2 glibc-c179df4e9301ba09589aef60a038e259df70b5b9.zip |
[BZ #961]
2005-05-22 Dmitry V. Levin <ldv@altlinux.org>
[BZ #961]
* io/sys/sendfile.h: Remove __nonnull from sendfile and sendfile64
declarations.
Diffstat (limited to 'io/sys/sendfile.h')
-rw-r--r-- | io/sys/sendfile.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/io/sys/sendfile.h b/io/sys/sendfile.h index 24256b5414..4c1367b6be 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 |