aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1998-02-03 22:19:35 +0000
committerBruce Evans <bde@FreeBSD.org>1998-02-03 22:19:35 +0000
commite7a5897899c7bc887604debef57ccd99a30557b7 (patch)
tree3dad6c5cb2d060e45452d055907c566fe275f1c3
parentf77c781169728d58143366a3ebcd51182b028274 (diff)
downloadsrc-e7a5897899c7bc887604debef57ccd99a30557b7.tar.gz
src-e7a5897899c7bc887604debef57ccd99a30557b7.zip
Added #include of <sys/queue.h> so that this file is more "self"-sufficent.
Notes
Notes: svn path=/head/; revision=33058
-rw-r--r--sys/net/raw_cb.h4
-rw-r--r--sys/netinet/ip_fw.h4
-rw-r--r--sys/nfs/nfsrvcache.h4
-rw-r--r--sys/nfsserver/nfsrvcache.h4
-rw-r--r--sys/vm/vm_pager.h4
5 files changed, 15 insertions, 5 deletions
diff --git a/sys/net/raw_cb.h b/sys/net/raw_cb.h
index 2cc5cccd61e0..23849ee3bf19 100644
--- a/sys/net/raw_cb.h
+++ b/sys/net/raw_cb.h
@@ -31,12 +31,14 @@
* SUCH DAMAGE.
*
* @(#)raw_cb.h 8.1 (Berkeley) 6/10/93
- * $Id: raw_cb.h,v 1.8 1997/04/14 18:23:23 phk Exp $
+ * $Id: raw_cb.h,v 1.9 1997/04/27 20:00:58 wollman Exp $
*/
#ifndef _NET_RAW_CB_H_
#define _NET_RAW_CB_H_
+#include <sys/queue.h>
+
/*
* Raw protocol interface control block. Used
* to tie a socket to the generic raw interface.
diff --git a/sys/netinet/ip_fw.h b/sys/netinet/ip_fw.h
index 6f7deb202564..bfc8e7257afa 100644
--- a/sys/netinet/ip_fw.h
+++ b/sys/netinet/ip_fw.h
@@ -11,12 +11,14 @@
*
* This software is provided ``AS IS'' without any warranties of any kind.
*
- * $Id: ip_fw.h,v 1.30 1997/10/28 15:58:45 bde Exp $
+ * $Id: ip_fw.h,v 1.31 1998/01/08 03:03:54 alex Exp $
*/
#ifndef _IP_FW_H
#define _IP_FW_H
+#include <sys/queue.h>
+
/*
* This union structure identifies an interface, either explicitly
* by name or implicitly by IP address. The flags IP_FW_F_IIFNAME
diff --git a/sys/nfs/nfsrvcache.h b/sys/nfs/nfsrvcache.h
index e7cf8290c13e..b17a0227f4c8 100644
--- a/sys/nfs/nfsrvcache.h
+++ b/sys/nfs/nfsrvcache.h
@@ -34,13 +34,15 @@
* SUCH DAMAGE.
*
* @(#)nfsrvcache.h 8.3 (Berkeley) 3/30/95
- * $Id: nfsrvcache.h,v 1.8 1997/02/22 09:42:51 peter Exp $
+ * $Id: nfsrvcache.h,v 1.9 1997/06/03 17:22:47 dfr Exp $
*/
#ifndef _NFS_NFSRVCACHE_H_
#define _NFS_NFSRVCACHE_H_
+#include <sys/queue.h>
+
/*
* Definitions for the server recent request cache
*/
diff --git a/sys/nfsserver/nfsrvcache.h b/sys/nfsserver/nfsrvcache.h
index e7cf8290c13e..b17a0227f4c8 100644
--- a/sys/nfsserver/nfsrvcache.h
+++ b/sys/nfsserver/nfsrvcache.h
@@ -34,13 +34,15 @@
* SUCH DAMAGE.
*
* @(#)nfsrvcache.h 8.3 (Berkeley) 3/30/95
- * $Id: nfsrvcache.h,v 1.8 1997/02/22 09:42:51 peter Exp $
+ * $Id: nfsrvcache.h,v 1.9 1997/06/03 17:22:47 dfr Exp $
*/
#ifndef _NFS_NFSRVCACHE_H_
#define _NFS_NFSRVCACHE_H_
+#include <sys/queue.h>
+
/*
* Definitions for the server recent request cache
*/
diff --git a/sys/vm/vm_pager.h b/sys/vm/vm_pager.h
index c809865d1fe7..ec2145363fe4 100644
--- a/sys/vm/vm_pager.h
+++ b/sys/vm/vm_pager.h
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)vm_pager.h 8.4 (Berkeley) 1/12/94
- * $Id: vm_pager.h,v 1.13 1997/02/22 09:48:37 peter Exp $
+ * $Id: vm_pager.h,v 1.14 1997/10/12 20:26:32 phk Exp $
*/
/*
@@ -46,6 +46,8 @@
#ifndef _VM_PAGER_
#define _VM_PAGER_
+#include <sys/queue.h>
+
TAILQ_HEAD(pagerlst, vm_object);
struct pagerops {