From 997ba92a0fa85919b1c46346db8fb31b4e579c5a Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sat, 8 Sep 2012 01:03:01 -0400 Subject: add linux tee syscall --- include/fcntl.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/fcntl.h') diff --git a/include/fcntl.h b/include/fcntl.h index cfdccd9b..cbaec5da 100644 --- a/include/fcntl.h +++ b/include/fcntl.h @@ -130,6 +130,7 @@ ssize_t readahead(int, off_t, size_t); int sync_file_range(int, off_t, off_t, unsigned); ssize_t vmsplice(int, const struct iovec *, size_t, unsigned); ssize_t splice(int, off_t *, int, off_t *, size_t, unsigned); +ssize_t tee(int, int, size_t, unsigned); #define loff_t off_t #endif -- cgit v1.2.1