about summary refs log tree commit diff
path: root/io/sys
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2005-05-23 17:37:21 +0000
committerUlrich Drepper <drepper@redhat.com>2005-05-23 17:37:21 +0000
commitc179df4e9301ba09589aef60a038e259df70b5b9 (patch)
tree245814951fbffe0e37fc4a8b62955318423bbcaf /io/sys
parentceef26a28a2a22ef010ac57f501cc3f0a4271cff (diff)
downloadglibc-c179df4e9301ba09589aef60a038e259df70b5b9.tar.gz
glibc-c179df4e9301ba09589aef60a038e259df70b5b9.tar.xz
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')
-rw-r--r--io/sys/sendfile.h6
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