summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-09-08 01:03:01 -0400
committerRich Felker <dalias@aerifal.cx>2012-09-08 01:03:01 -0400
commit997ba92a0fa85919b1c46346db8fb31b4e579c5a (patch)
tree38f0b3259f8ed9fffe2cce08c91545f7ee1cd920 /include
parent00e6bbcc05403aec1c96674c1060d54f5f237e87 (diff)
downloadmusl-997ba92a0fa85919b1c46346db8fb31b4e579c5a.tar.gz
add linux tee syscall
Diffstat (limited to 'include')
-rw-r--r--include/fcntl.h1
1 files changed, 1 insertions, 0 deletions
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