diff options
author | 2001-09-23 10:44:10 +0000 | |
---|---|---|
committer | 2001-09-23 10:44:10 +0000 | |
commit | 8da112b76fef895bb28a6897433b28b734efe9f4 (patch) | |
tree | 0573c70bcd72fd114f0c888256dca496a78eafd6 | |
parent | make this compile on alpha (diff) | |
download | wireguard-openbsd-8da112b76fef895bb28a6897433b28b734efe9f4.tar.xz wireguard-openbsd-8da112b76fef895bb28a6897433b28b734efe9f4.zip |
ipxintr was missing
-rw-r--r-- | sys/net/netisr.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/net/netisr.h b/sys/net/netisr.h index 69bffdf8987..56179b3adbf 100644 --- a/sys/net/netisr.h +++ b/sys/net/netisr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: netisr.h,v 1.15 2000/11/08 13:23:40 art Exp $ */ +/* $OpenBSD: netisr.h,v 1.16 2001/09/23 10:44:10 mickey Exp $ */ /* $NetBSD: netisr.h,v 1.12 1995/08/12 23:59:24 mycroft Exp $ */ /* @@ -79,6 +79,7 @@ void ipintr __P((void)); void ip6intr __P((void)); void atintr __P((void)); void nsintr __P((void)); +void ipxintr __P((void)); void clnlintr __P((void)); void natmintr __P((void)); void pppintr __P((void)); |