=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/aucat/Attic/pipe.h,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- src/usr.bin/aucat/Attic/pipe.h 2010/04/06 20:07:01 1.5 +++ src/usr.bin/aucat/Attic/pipe.h 2012/04/11 06:05:43 1.6 @@ -1,4 +1,4 @@ -/* $OpenBSD: pipe.h,v 1.5 2010/04/06 20:07:01 ratchov Exp $ */ +/* $OpenBSD: pipe.h,v 1.6 2012/04/11 06:05:43 ratchov Exp $ */ /* * Copyright (c) 2008 Alexandre Ratchov * @@ -28,8 +28,8 @@ struct pipe *pipe_new(struct fileops *, int, char *); void pipe_close(struct file *); -unsigned pipe_read(struct file *, unsigned char *, unsigned); -unsigned pipe_write(struct file *, unsigned char *, unsigned); +unsigned int pipe_read(struct file *, unsigned char *, unsigned int); +unsigned int pipe_write(struct file *, unsigned char *, unsigned int); int pipe_nfds(struct file *); int pipe_pollfd(struct file *, struct pollfd *, int); int pipe_revents(struct file *, struct pollfd *);