From 35ec516616d07a32427965f9b0fa417e36aa4aad Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Mon, 23 Mar 1998 14:05:25 +0000 Subject: [PATCH] Don't depend on namespace pollution to help misdeclare pointers as arrays. --- sys/posix4/aio.h | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/sys/posix4/aio.h b/sys/posix4/aio.h index 678dc0f4e34..25e7d1c4cfe 100644 --- a/sys/posix4/aio.h +++ b/sys/posix4/aio.h @@ -31,7 +31,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: aio.h,v 1.1 1998/03/04 10:26:10 dufault Exp $ + * $Id: aio.h,v 1.2 1998/03/08 17:25:11 dufault Exp $ */ /* aio.h: P1003.1B-1993 Asynchronous I/O */ @@ -91,15 +91,13 @@ __BEGIN_DECLS int aio_read __P((struct aiocb *)); int aio_write __P((struct aiocb *)); -int lio_listio __P((int, aio_listio_ctl [_POSIX_AIO_LISTIO_MAX], - int, struct sigevent *)); +int lio_listio __P((int, aio_listio_ctl[], int, struct sigevent *)); int aio_error __P((const struct aiocb *)); ssize_t aio_return __P((struct aiocb *)); int aio_cancel __P((int, struct aiocb *)); -int aio_suspend __P((caio_listio_ctl [_POSIX_AIO_LISTIO_MAX], - int, const struct timespec *)); +int aio_suspend __P((caio_listio_ctl[], int, const struct timespec *)); int aio_fsync __P((int, struct aiocb *)); __END_DECLS