diff options
Diffstat (limited to 'src/vcl/vcom_glibc_socket.h')
-rw-r--r-- | src/vcl/vcom_glibc_socket.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/vcl/vcom_glibc_socket.h b/src/vcl/vcom_glibc_socket.h index 969029f3e63..bf18473de85 100644 --- a/src/vcl/vcom_glibc_socket.h +++ b/src/vcl/vcom_glibc_socket.h @@ -153,6 +153,9 @@ getpeername (int __fd, __SOCKADDR_ARG __addr, socklen_t * __restrict __len); __THROW. */ extern ssize_t send (int __fd, const void *__buf, size_t __n, int __flags); +extern ssize_t sendfile (int __out_fd, int __in_fd, off_t * __offset, + size_t __len); + /* Read N bytes into BUF from socket FD. Returns the number read or -1 for errors. |