diff options
author | Bret Lambert <blambert@cvs.openbsd.org> | 2008-06-11 04:52:28 +0000 |
---|---|---|
committer | Bret Lambert <blambert@cvs.openbsd.org> | 2008-06-11 04:52:28 +0000 |
commit | d5fd8ef27566a1cc60baba9cf6624cc6e82098b7 (patch) | |
tree | 707b59d209d9d71dd13f5f615e37d108ce76106f /sys/nfs/nfs_kq.c | |
parent | 756bea63ce1503e31fa7dd33982153bc7c867b83 (diff) |
Canonical for() -> queue.h FOREACH macro conversions.
Also, it is historical practice to #include <sys/queue.h>
when using queue.h macros.
ok thib@ krw@
special thanks to krw@ for reminders vice violence
Diffstat (limited to 'sys/nfs/nfs_kq.c')
-rw-r--r-- | sys/nfs/nfs_kq.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/nfs/nfs_kq.c b/sys/nfs/nfs_kq.c index c2ecfb35d22..e1ac300fac8 100644 --- a/sys/nfs/nfs_kq.c +++ b/sys/nfs/nfs_kq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nfs_kq.c,v 1.10 2007/09/20 12:54:31 thib Exp $ */ +/* $OpenBSD: nfs_kq.c,v 1.11 2008/06/11 04:52:27 blambert Exp $ */ /* $NetBSD: nfs_kq.c,v 1.7 2003/10/30 01:43:10 simonb Exp $ */ /*- @@ -50,6 +50,7 @@ #include <sys/file.h> #include <sys/kthread.h> #include <sys/rwlock.h> +#include <sys/queue.h> #include <uvm/uvm_extern.h> #include <uvm/uvm.h> |