diff options
author | jeff <jeff@FreeBSD.org> | 2002-07-05 05:15:30 +0000 |
---|---|---|
committer | jeff <jeff@FreeBSD.org> | 2002-07-05 05:15:30 +0000 |
commit | 514a3b80589538173a8e0505c00df0ced4de8fc9 (patch) | |
tree | d55a24fb460ad756b6a9392744f950df48ec1055 /sys | |
parent | 48d11f93439f7b168afba43a840ec71233b22605 (diff) | |
download | FreeBSD-src-514a3b80589538173a8e0505c00df0ced4de8fc9.zip FreeBSD-src-514a3b80589538173a8e0505c00df0ced4de8fc9.tar.gz |
Include systm.h before vnode.h so Debugger() and printf() are available when
full vnode lock debugging is enabled.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/kern/vfs_mount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/vfs_mount.c b/sys/kern/vfs_mount.c index 09f7c46..1c32aff 100644 --- a/sys/kern/vfs_mount.c +++ b/sys/kern/vfs_mount.c @@ -77,10 +77,10 @@ #include <sys/reboot.h> #include <sys/sysproto.h> #include <sys/sx.h> -#include <sys/vnode.h> #include <sys/sysctl.h> #include <sys/sysent.h> #include <sys/systm.h> +#include <sys/vnode.h> #include <machine/stdarg.h> |