1
0
forked from 0ad/0ad

oops, removed one const too many. fixed.

This was SVN commit r1484.
This commit is contained in:
janwas 2004-12-10 00:14:10 +00:00
parent 9d317d8164
commit 9f6d085732
2 changed files with 2 additions and 2 deletions

View File

@ -549,7 +549,7 @@ ssize_t aio_return(struct aiocb* cb)
} }
int aio_suspend(const struct aiocb* cbs[], int n, const struct timespec* ts) int aio_suspend(const struct aiocb* const cbs[], int n, const struct timespec* ts)
{ {
int i; int i;

View File

@ -57,7 +57,7 @@ extern int aio_error(const struct aiocb*);
extern int aio_fsync(int, struct aiocb*); extern int aio_fsync(int, struct aiocb*);
extern int aio_read(struct aiocb*); extern int aio_read(struct aiocb*);
extern ssize_t aio_return(struct aiocb*); extern ssize_t aio_return(struct aiocb*);
extern int aio_suspend(const struct aiocb* const [], int, const struct timespec*); extern int aio_suspend(const struct aiocb* const[], int, const struct timespec*);
extern int aio_write(struct aiocb*); extern int aio_write(struct aiocb*);
extern int lio_listio(int, struct aiocb* const[], int, struct sigevent*); extern int lio_listio(int, struct aiocb* const[], int, struct sigevent*);