diff options
author | 2020-09-30 19:22:51 +0000 | |
---|---|---|
committer | 2020-09-30 19:22:51 +0000 | |
commit | 73c7e8bcd2f5e91065b3ecea580f1a903d39f75a (patch) | |
tree | 363a0cdde9ed05813ab57b9279eec7eb439a3d07 | |
parent | Add minimal support for OpenBSD/powerpc64. (diff) | |
download | wireguard-openbsd-73c7e8bcd2f5e91065b3ecea580f1a903d39f75a.tar.xz wireguard-openbsd-73c7e8bcd2f5e91065b3ecea580f1a903d39f75a.zip |
We have no if_attachtail() function so remove the declaration.
ok deraadt@ claudio@
-rw-r--r-- | sys/net/if.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/net/if.h b/sys/net/if.h index 6d356907de6..8f8892d6a03 100644 --- a/sys/net/if.h +++ b/sys/net/if.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if.h,v 1.203 2019/07/25 15:23:39 krw Exp $ */ +/* $OpenBSD: if.h,v 1.204 2020/09/30 19:22:51 mvs Exp $ */ /* $NetBSD: if.h,v 1.23 1996/05/07 02:40:27 thorpej Exp $ */ /* @@ -530,7 +530,6 @@ void if_attach(struct ifnet *); void if_attach_queues(struct ifnet *, unsigned int); void if_attach_iqueues(struct ifnet *, unsigned int); void if_attach_ifq(struct ifnet *, const struct ifq_ops *, void *); -void if_attachtail(struct ifnet *); void if_attachhead(struct ifnet *); void if_deactivate(struct ifnet *); void if_detach(struct ifnet *); |