Add multiple-include prevention to several headers which were missing
it. Split ccittintr() declaration into a separate header file so that the non-namespace-safe cruft in pk.h doesn't interfere with other subsystems which happen to include netisr.h [Clean up after the Keystone Kwality Kops]
This commit is contained in:
parent
91c3839d0a
commit
b083107c2e
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: pk.h,v 1.7 1998/09/13 16:21:18 christos Exp $ */
|
||||
/* $NetBSD: pk.h,v 1.8 2000/07/02 17:34:01 sommerfeld Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1984 University of British Columbia.
|
||||
|
@ -40,6 +40,9 @@
|
|||
* @(#)pk.h 8.1 (Berkeley) 6/10/93
|
||||
*/
|
||||
|
||||
#ifndef _NETCCITT_PK_H_
|
||||
#define _NETCCITT_PK_H_
|
||||
|
||||
/*
|
||||
*
|
||||
* X.25 Packet Level Definitions:
|
||||
|
@ -208,3 +211,5 @@ struct data_packet {
|
|||
#define DTE_PRETENDDTE 0x0020
|
||||
|
||||
#define MAXRESTARTCOLLISIONS 10
|
||||
|
||||
#endif /* _NETCCITT_PK_H_ */
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: pk_extern.h,v 1.5 1998/09/13 16:21:18 christos Exp $ */
|
||||
/* $NetBSD: pk_extern.h,v 1.6 2000/07/02 17:34:01 sommerfeld Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1995 The NetBSD Foundation, Inc.
|
||||
|
@ -37,6 +37,9 @@
|
|||
*/
|
||||
|
||||
#ifdef _KERNEL
|
||||
|
||||
#include <netccitt/x25isr.h>
|
||||
|
||||
struct pklcd;
|
||||
struct mbuf_cache;
|
||||
struct x25_ifaddr;
|
||||
|
@ -55,7 +58,6 @@ void pk_trace __P((struct x25config *, struct mbuf *, char *));
|
|||
void mbuf_cache __P((struct mbuf_cache *, struct mbuf *));
|
||||
|
||||
/* pk_input.c */
|
||||
void ccittintr __P((void));
|
||||
struct pkcb *pk_newlink __P((struct x25_ifaddr *, caddr_t));
|
||||
int pk_dellink __P((struct pkcb *));
|
||||
int pk_resize __P((struct pkcb *));
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: x25.h,v 1.9 2000/03/13 23:52:40 soren Exp $ */
|
||||
/* $NetBSD: x25.h,v 1.10 2000/07/02 17:34:01 sommerfeld Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1984 University of British Columbia.
|
||||
|
@ -43,6 +43,9 @@
|
|||
* @(#)x25.h 8.1 (Berkeley) 6/10/93
|
||||
*/
|
||||
|
||||
#ifndef _NETCCITT_X25_H_
|
||||
#define _NETCCITT_X25_H_
|
||||
|
||||
#ifdef _KERNEL
|
||||
#define PRC_IFUP 3
|
||||
#define PRC_LINKUP 4
|
||||
|
@ -182,3 +185,5 @@ int pk_user_protolisten __P((u_char *));
|
|||
int pk_rtattach __P((struct socket *, struct mbuf *));
|
||||
int x25_rtattach __P((struct pklcd *, struct rtentry *));
|
||||
#endif
|
||||
|
||||
#endif /* _NETCCITT_X25_H_ */
|
||||
|
|
|
@ -0,0 +1,44 @@
|
|||
/* $NetBSD: x25isr.h,v 1.1 2000/07/02 17:34:01 sommerfeld Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2000 The NetBSD Foundation, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This code is derived from software contributed to The NetBSD Foundation
|
||||
* by Christos Zoulas.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* This product includes software developed by the NetBSD
|
||||
* Foundation, Inc. and its contributors.
|
||||
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
||||
* contributors may be used to endorse or promote products derived
|
||||
* from this software without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
||||
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
||||
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
||||
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#ifndef _NETCCITT_X25ISR_H_
|
||||
#define _NETCCITT_X25ISR_H_
|
||||
|
||||
void ccittintr __P((void));
|
||||
|
||||
#endif /* _NETCCITT_X25ISR_H_ */
|
Loading…
Reference in New Issue