diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2000-11-08 13:23:41 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2000-11-08 13:23:41 +0000 |
commit | 1f872c4ae09031cae6226d34332c12e410aa0ff2 (patch) | |
tree | 9dacce8fb9111dd7790e0e1d63ac0696165ad5af /sys/net/netisr.h | |
parent | 0ab93195b43512a80e05a2ab66e6da055e4749e8 (diff) |
Opps.
protect from multiple inclusion.
Needed for the netisr_dispatch changes.
Diffstat (limited to 'sys/net/netisr.h')
-rw-r--r-- | sys/net/netisr.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/net/netisr.h b/sys/net/netisr.h index 98da386944e..69bffdf8987 100644 --- a/sys/net/netisr.h +++ b/sys/net/netisr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: netisr.h,v 1.14 1999/12/08 15:58:30 itojun Exp $ */ +/* $OpenBSD: netisr.h,v 1.15 2000/11/08 13:23:40 art Exp $ */ /* $NetBSD: netisr.h,v 1.12 1995/08/12 23:59:24 mycroft Exp $ */ /* @@ -36,6 +36,8 @@ * @(#)netisr.h 8.1 (Berkeley) 6/10/93 */ +#ifndef _NET_NETISR_H_ +#define _NET_NETISR_H_ /* * The networking code runs off software interrupts. * @@ -88,3 +90,5 @@ void bridgeintr __P((void)); { netisr |= 1<<(anisr); add_net_randomness(anisr); setsoftnet(); } #endif #endif + +#endif /* _NET_NETISR_H_ */ |