diff options
author | 2013-10-23 15:12:42 +0000 | |
---|---|---|
committer | 2013-10-23 15:12:42 +0000 | |
commit | 48a59fe3de1bf0741c6557eb9f5dcbf9d9c5b9a3 (patch) | |
tree | 980637fc8c10e433bdde3004b27deb7a8c26846d /sys/net/if_tun.c | |
parent | No need to expose twice in_socktrim(), it is only used in one file. (diff) | |
download | wireguard-openbsd-48a59fe3de1bf0741c6557eb9f5dcbf9d9c5b9a3.tar.xz wireguard-openbsd-48a59fe3de1bf0741c6557eb9f5dcbf9d9c5b9a3.zip |
Remove the number of in_var.h inclusions by moving some functions and
global variables to in.h.
ok mikeb@, deraadt@
Diffstat (limited to 'sys/net/if_tun.c')
-rw-r--r-- | sys/net/if_tun.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/net/if_tun.c b/sys/net/if_tun.c index 5c750eaeb96..a258b99fc93 100644 --- a/sys/net/if_tun.c +++ b/sys/net/if_tun.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_tun.c,v 1.118 2013/10/19 14:46:31 mpi Exp $ */ +/* $OpenBSD: if_tun.c,v 1.119 2013/10/23 15:12:42 mpi Exp $ */ /* $NetBSD: if_tun.c,v 1.24 1996/05/07 02:40:48 thorpej Exp $ */ /* @@ -65,7 +65,6 @@ #ifdef INET #include <netinet/in.h> #include <netinet/in_systm.h> -#include <netinet/in_var.h> #include <netinet/ip.h> #include <netinet/if_ether.h> #endif |