diff options
author | David Jeannot <djeannot24@gmail.com> | 2012-01-16 16:54:00 -0500 |
---|---|---|
committer | Russ Cox <rsc@swtch.com> | 2012-01-16 16:54:00 -0500 |
commit | 9a201244bf1ff833906612245a24732774b8db8f (patch) | |
tree | 0a2a69826818b9369bbdb8d4b083e6a583a02a67 | |
parent | fc638f7bd4d11352c44c8d4c6fc6d15e90f17ddb (diff) | |
download | plan9port-9a201244bf1ff833906612245a24732774b8db8f.tar.gz plan9port-9a201244bf1ff833906612245a24732774b8db8f.tar.bz2 plan9port-9a201244bf1ff833906612245a24732774b8db8f.zip |
ioproc(3): fix prototypes
R=rsc
CC=plan9port.codebot
http://codereview.appspot.com/5500090
-rw-r--r-- | man/man3/ioproc.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/man/man3/ioproc.3 b/man/man3/ioproc.3 index 865a9883..a87fa775 100644 --- a/man/man3/ioproc.3 +++ b/man/man3/ioproc.3 @@ -36,9 +36,9 @@ int ioopen(Ioproc *io, char *file, int omode); long ioread(Ioproc *io, int fd, void *a, long n); int ioread9pmsg(Ioproc *io, int fd, void *a, uint n); long ioreadn(Ioproc *io, int fd, void *a, long n); -int iorecvfd(int socket); -int iosendfd(int socket, int fd); -int iosleep(int milli); +int iorecvfd(Ioproc *io, int socket); +int iosendfd(Ioproc *io, int socket, int fd); +int iosleep(Ioproc *io, long milli); long iowrite(Ioproc *io, int fd, void *a, long n); .XX void iointerrupt(Ioproc *io); |