Added #include of <sys/queue.h> so that this file is more "self"-sufficent.

This commit is contained in:
Bruce Evans 1998-02-03 22:19:35 +00:00
parent f77c781169
commit e7a5897899
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=33058
5 changed files with 15 additions and 5 deletions

View File

@ -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.

View File

@ -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

View File

@ -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
*/

View File

@ -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
*/

View File

@ -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 {