From fd408d27a079ad4ef1b283a0c77d781789c28763 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Tue, 13 Sep 2011 15:39:58 -0400 Subject: fix prototypes for aio_read and aio_write --- include/aio.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/aio.h') diff --git a/include/aio.h b/include/aio.h index 893c0e9e..c0dab9c5 100644 --- a/include/aio.h +++ b/include/aio.h @@ -41,8 +41,8 @@ struct aiocb { #define LIO_WAIT 0 #define LIO_NOWAIT 1 -int aio_read(struct aiocb *); -int aio_write(struct aiocb *); +ssize_t aio_read(struct aiocb *); +ssize_t aio_write(struct aiocb *); int aio_error(struct aiocb *); ssize_t aio_return(struct aiocb *); int aio_cancel(int, struct aiocb *); -- cgit v1.2.1