summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorart <art@openbsd.org>2000-11-08 13:23:40 +0000
committerart <art@openbsd.org>2000-11-08 13:23:40 +0000
commit333cec9c4d01c407c23cc89a589ece11e016b886 (patch)
treebbaba171d452ee9605ea7cab0a212942fd0974ec
parentDon't busy-wait for random data. (diff)
downloadwireguard-openbsd-333cec9c4d01c407c23cc89a589ece11e016b886.tar.xz
wireguard-openbsd-333cec9c4d01c407c23cc89a589ece11e016b886.zip
Opps.
protect from multiple inclusion. Needed for the netisr_dispatch changes.
-rw-r--r--sys/net/netisr.h6
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_ */