Fix a warning with a forward struct declaration.

This commit is contained in:
Garrett Wollman 2000-04-23 02:43:44 +00:00
parent c1c8bf8375
commit 4807c4ebeb

View File

@ -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 *);