diff options
author | 2010-07-31 20:48:32 +0000 | |
---|---|---|
committer | 2010-07-31 20:48:32 +0000 | |
commit | d4881b77641b7ac055b0383196fa75ffd101cc02 (patch) | |
tree | 498209a49d93fb43829c0c2afb9268f6f185d2a7 | |
parent | zap a comma; from Joachim Schipper (diff) | |
download | wireguard-openbsd-d4881b77641b7ac055b0383196fa75ffd101cc02.tar.xz wireguard-openbsd-d4881b77641b7ac055b0383196fa75ffd101cc02.zip |
another pair of files which relied on mbuf.h for pool.h; should be the last,
as the kernel now compiles w/o ``#include <sys/pool.h>'' in mbuf.h; removing
that line, though, is for another day, as a userland program (systat, IIRC)
fails to build without it there.
ok krw@
-rw-r--r-- | sys/net/if.c | 3 | ||||
-rw-r--r-- | sys/nfs/nfs_syscalls.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sys/net/if.c b/sys/net/if.c index 8e0d467b8ce..1ad04c99bb9 100644 --- a/sys/net/if.c +++ b/sys/net/if.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if.c,v 1.218 2010/07/03 04:44:51 guenther Exp $ */ +/* $OpenBSD: if.c,v 1.219 2010/07/31 20:48:32 blambert Exp $ */ /* $NetBSD: if.c,v 1.35 1996/05/07 05:26:04 thorpej Exp $ */ /* @@ -71,6 +71,7 @@ #include <sys/param.h> #include <sys/systm.h> #include <sys/mbuf.h> +#include <sys/pool.h> #include <sys/proc.h> #include <sys/socket.h> #include <sys/socketvar.h> diff --git a/sys/nfs/nfs_syscalls.c b/sys/nfs/nfs_syscalls.c index 77bfff39817..df6deb79d04 100644 --- a/sys/nfs/nfs_syscalls.c +++ b/sys/nfs/nfs_syscalls.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nfs_syscalls.c,v 1.89 2010/04/12 16:37:38 beck Exp $ */ +/* $OpenBSD: nfs_syscalls.c,v 1.90 2010/07/31 20:48:32 blambert Exp $ */ /* $NetBSD: nfs_syscalls.c,v 1.19 1996/02/18 11:53:52 fvdl Exp $ */ /* @@ -42,6 +42,7 @@ #include <sys/stat.h> #include <sys/vnode.h> #include <sys/mount.h> +#include <sys/pool.h> #include <sys/proc.h> #include <sys/uio.h> #include <sys/malloc.h> |