Fix a warning with a forward struct declaration.

This commit is contained in:
wollman 2000-04-23 02:43:44 +00:00
parent b16ce08794
commit b23d230b14

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