svn commit: trunk/uClibc/include/sys

psm at uclibc.org psm at uclibc.org
Mon Jan 30 15:04:11 UTC 2006


Author: psm
Date: 2006-01-30 07:04:09 -0800 (Mon, 30 Jan 2006)
New Revision: 13713

Log:
Sync w/ glibc

Modified:
   trunk/uClibc/include/sys/sendfile.h


Changeset:
Modified: trunk/uClibc/include/sys/sendfile.h
===================================================================
--- trunk/uClibc/include/sys/sendfile.h	2006-01-30 14:02:06 UTC (rev 13712)
+++ trunk/uClibc/include/sys/sendfile.h	2006-01-30 15:04:09 UTC (rev 13713)
@@ -32,19 +32,19 @@
    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




More information about the uClibc-cvs mailing list