diff options
Diffstat (limited to 'usr.bin/aucat/pipe.h')
-rw-r--r-- | usr.bin/aucat/pipe.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/aucat/pipe.h b/usr.bin/aucat/pipe.h index adcc0e89f5f..63ecb85b7ad 100644 --- a/usr.bin/aucat/pipe.h +++ b/usr.bin/aucat/pipe.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pipe.h,v 1.4 2010/04/03 17:59:17 ratchov Exp $ */ +/* $OpenBSD: pipe.h,v 1.5 2010/04/06 20:07:01 ratchov Exp $ */ /* * Copyright (c) 2008 Alexandre Ratchov <alex@caoua.org> * @@ -33,5 +33,8 @@ unsigned pipe_write(struct file *, unsigned char *, unsigned); int pipe_nfds(struct file *); int pipe_pollfd(struct file *, struct pollfd *, int); int pipe_revents(struct file *, struct pollfd *); +int pipe_seek(struct file *, off_t); +int pipe_trunc(struct file *, off_t); +off_t pipe_endpos(struct file *); #endif /* !defined(PIPE_H) */ |