diff options
author | jhb <jhb@FreeBSD.org> | 2001-03-28 09:17:56 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2001-03-28 09:17:56 +0000 |
commit | b47bfbe544d34ff21bc24b57c556621eb2355e45 (patch) | |
tree | 6869afd0b266ec1a53538458bd3851edeeca014d /sys/net | |
parent | fc959358c9cfd55db6d055b3af2e84ebcc01f553 (diff) | |
download | FreeBSD-src-b47bfbe544d34ff21bc24b57c556621eb2355e45.zip FreeBSD-src-b47bfbe544d34ff21bc24b57c556621eb2355e45.tar.gz |
Catch up to header include changes:
- <sys/mutex.h> now requires <sys/systm.h>
- <sys/mutex.h> and <sys/sx.h> now require <sys/lock.h>
Diffstat (limited to 'sys/net')
-rw-r--r-- | sys/net/if_var.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/net/if_var.h b/sys/net/if_var.h index 53a7b1e..21cf174 100644 --- a/sys/net/if_var.h +++ b/sys/net/if_var.h @@ -77,8 +77,10 @@ struct ether_header; #ifdef _KERNEL #include <sys/mbuf.h> +#include <sys/systm.h> /* XXX */ #endif /* _KERNEL */ -#include <sys/mutex.h> +#include <sys/lock.h> /* XXX */ +#include <sys/mutex.h> /* XXX */ TAILQ_HEAD(ifnethead, ifnet); /* we use TAILQs so that the order of */ TAILQ_HEAD(ifaddrhead, ifaddr); /* instantiation is preserved in the list */ |