(splice): Add offin and offout arguments to the prototype.

This commit is contained in:
Ulrich Drepper 2006-08-30 15:04:43 +00:00
parent 557df9aaca
commit 34cb4e8082

View File

@ -216,7 +216,8 @@ extern int vmsplice (int __fdout, const struct iovec *__iov, size_t __count,
unsigned int __flags); unsigned int __flags);
/* Splice two files together. */ /* Splice two files together. */
extern int splice (int __fdin, int __fdout, size_t __len, unsigned int __flags) extern int splice (int __fdin, __off64_t *__offin, int __fdout,
__off64_t *__offout, size_t __len, unsigned int __flags)
__THROW; __THROW;
/* In-kernel implementation of tee for pipe buffers. */ /* In-kernel implementation of tee for pipe buffers. */