mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
2.5-18.1
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user