fix various errors in function signatures/prototypes found by nsz

This commit is contained in:
Rich Felker
2011-09-13 21:09:35 -04:00
parent 5e9deea003
commit 13cd969552
9 changed files with 19 additions and 16 deletions
+2 -2
View File
@@ -43,10 +43,10 @@ struct aiocb {
ssize_t aio_read(struct aiocb *);
ssize_t aio_write(struct aiocb *);
int aio_error(struct aiocb *);
int aio_error(const struct aiocb *);
ssize_t aio_return(struct aiocb *);
int aio_cancel(int, struct aiocb *);
int aio_suspend(struct aiocb *const [], int, const struct timespec *);
int aio_suspend(const struct aiocb *const [], int, const struct timespec *);
int aio_fsync(int, struct aiocb *);
int lio_listio(int, struct aiocb *const [], int, struct sigevent *);