1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-05 09:14:03 +00:00

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
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=59528

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