about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2005-07-18 01:42:48 +0000
committerRoland McGrath <roland@gnu.org>2005-07-18 01:42:48 +0000
commit278a5107898935732e43be70f2c3e68de4b31162 (patch)
treea6441cbcdf26c11223a02815f58291d64e41517c
parent207f69dccfe19608bd1a0239c2358643b121f362 (diff)
downloadglibc-278a5107898935732e43be70f2c3e68de4b31162.tar.gz
glibc-278a5107898935732e43be70f2c3e68de4b31162.tar.xz
glibc-278a5107898935732e43be70f2c3e68de4b31162.zip
2005-05-22 Dmitry V. Levin <ldv@altlinux.org>
	[BZ #961]
	* io/sys/sendfile.h: Remove __nonnull from sendfile and sendfile64
	declarations.
-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