Add prototype for tee.

This commit is contained in:
Ulrich Drepper 2006-04-14 21:55:00 +00:00
parent 111e56f80c
commit 44f4e76726
1 changed files with 4 additions and 0 deletions

View File

@ -204,6 +204,10 @@ extern int sync_file_range (int __fd, __off64_t __from, __off64_t __to,
extern int splice (int __fdin, int __fdout, size_t __len, unsigned int __flags)
__THROW;
/* In-kernel implementation of tee for pipe buffers. */
extern int tee (int __fdin, int __fdout, size_t __len, unsigned int __flags)
__THROW;
#endif
__END_DECLS