From 4807c4ebeb2d7d37fc41ccd93ce477c0f7aa5d09 Mon Sep 17 00:00:00 2001 From: Garrett Wollman Date: Sun, 23 Apr 2000 02:43:44 +0000 Subject: [PATCH] Fix a warning with a forward struct declaration. --- sys/sys/aio.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sys/sys/aio.h b/sys/sys/aio.h index b6be86e1721..946ac0bec4c 100644 --- a/sys/sys/aio.h +++ b/sys/sys/aio.h @@ -171,6 +171,10 @@ struct aiocblist { struct aiocb uaiocb; /* Kernel I/O control block */ }; +/* Forward declarations for prototypes below. */ +struct socket; +struct sockbuf; + void aio_proc_rundown(struct proc *p); void aio_swake(struct socket *, struct sockbuf *);