diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2007-03-25 21:52:28 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2007-03-25 21:52:28 +0000 |
commit | 63515f444815da5fc40cef4faa3567268ef59010 (patch) | |
tree | f79c82bc1658c4ddbe97bcaa8ee01f825953fac7 | |
parent | 9e2a53e13e0b90e45dea6189b0e5363bd19c90e6 (diff) |
include rwlock.h ourselves, better than depending on it getting picked
up elsewhere
-rw-r--r-- | sys/dev/vnd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/vnd.c b/sys/dev/vnd.c index 49225c16800..3dc563ea87f 100644 --- a/sys/dev/vnd.c +++ b/sys/dev/vnd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vnd.c,v 1.71 2007/03/25 18:02:37 tedu Exp $ */ +/* $OpenBSD: vnd.c,v 1.72 2007/03/25 21:52:27 tedu Exp $ */ /* $NetBSD: vnd.c,v 1.26 1996/03/30 23:06:11 christos Exp $ */ /* @@ -76,6 +76,7 @@ #include <sys/mount.h> #include <sys/vnode.h> #include <sys/file.h> +#include <sys/rwlock.h> #include <sys/uio.h> #include <sys/conf.h> |