diff options
author | Bret Lambert <blambert@cvs.openbsd.org> | 2010-07-31 20:48:33 +0000 |
---|---|---|
committer | Bret Lambert <blambert@cvs.openbsd.org> | 2010-07-31 20:48:33 +0000 |
commit | 7e6b1723eff79ba8ec057910aef9e6c6315424b8 (patch) | |
tree | 41548809d6fc39cedf971c7017463a7b9a8a566d /sys/nfs | |
parent | db6eac8b1cfa458c50695667c58c4df98b06f7b9 (diff) |
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@
Diffstat (limited to 'sys/nfs')
-rw-r--r-- | sys/nfs/nfs_syscalls.c | 3 |
1 files changed, 2 insertions, 1 deletions
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> |