diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2014-07-22 11:06:11 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2014-07-22 11:06:11 +0000 |
commit | 463cdf6bf369160c154699de2413b4bc0bc6cd6f (patch) | |
tree | 320c3e9401f237a0fc46f97d6bdc3c0208b7edfb /sys/netinet | |
parent | 78614bd3e23a8c55cdf421a86afdf6cd3b32c4dc (diff) |
Fewer <netinet/in_systm.h> !
Diffstat (limited to 'sys/netinet')
-rw-r--r-- | sys/netinet/igmp.c | 3 | ||||
-rw-r--r-- | sys/netinet/in4_cksum.c | 3 | ||||
-rw-r--r-- | sys/netinet/in_gif.c | 3 | ||||
-rw-r--r-- | sys/netinet/in_pcb.c | 3 | ||||
-rw-r--r-- | sys/netinet/in_proto.c | 3 | ||||
-rw-r--r-- | sys/netinet/ip_ah.c | 3 | ||||
-rw-r--r-- | sys/netinet/ip_carp.c | 3 | ||||
-rw-r--r-- | sys/netinet/ip_divert.c | 3 | ||||
-rw-r--r-- | sys/netinet/ip_ecn.c | 3 | ||||
-rw-r--r-- | sys/netinet/ip_esp.c | 3 | ||||
-rw-r--r-- | sys/netinet/ip_ether.c | 3 | ||||
-rw-r--r-- | sys/netinet/ip_gre.c | 3 | ||||
-rw-r--r-- | sys/netinet/ip_ipcomp.c | 3 | ||||
-rw-r--r-- | sys/netinet/ip_ipip.c | 3 | ||||
-rw-r--r-- | sys/netinet/ip_ipsp.c | 3 | ||||
-rw-r--r-- | sys/netinet/ip_mroute.c | 3 | ||||
-rw-r--r-- | sys/netinet/ip_output.c | 3 | ||||
-rw-r--r-- | sys/netinet/ip_spd.c | 3 | ||||
-rw-r--r-- | sys/netinet/ipsec_input.c | 3 | ||||
-rw-r--r-- | sys/netinet/ipsec_output.c | 3 | ||||
-rw-r--r-- | sys/netinet/raw_ip.c | 3 | ||||
-rw-r--r-- | sys/netinet/tcp_input.c | 3 | ||||
-rw-r--r-- | sys/netinet/tcp_output.c | 3 | ||||
-rw-r--r-- | sys/netinet/tcp_subr.c | 3 | ||||
-rw-r--r-- | sys/netinet/tcp_timer.c | 3 | ||||
-rw-r--r-- | sys/netinet/tcp_usrreq.c | 3 | ||||
-rw-r--r-- | sys/netinet/udp_usrreq.c | 3 |
27 files changed, 27 insertions, 54 deletions
diff --git a/sys/netinet/igmp.c b/sys/netinet/igmp.c index a112ef2d6ea..038b43b21d7 100644 --- a/sys/netinet/igmp.c +++ b/sys/netinet/igmp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: igmp.c,v 1.42 2014/07/12 18:44:23 tedu Exp $ */ +/* $OpenBSD: igmp.c,v 1.43 2014/07/22 11:06:10 mpi Exp $ */ /* $NetBSD: igmp.c,v 1.15 1996/02/13 23:41:25 christos Exp $ */ /* @@ -89,7 +89,6 @@ #include <netinet/in.h> #include <netinet/in_var.h> -#include <netinet/in_systm.h> #include <netinet/ip.h> #include <netinet/ip_var.h> #include <netinet/igmp.h> diff --git a/sys/netinet/in4_cksum.c b/sys/netinet/in4_cksum.c index b3bf4ffac9e..a002643eaf1 100644 --- a/sys/netinet/in4_cksum.c +++ b/sys/netinet/in4_cksum.c @@ -1,4 +1,4 @@ -/* $OpenBSD: in4_cksum.c,v 1.8 2011/07/05 21:40:38 dhill Exp $ */ +/* $OpenBSD: in4_cksum.c,v 1.9 2014/07/22 11:06:10 mpi Exp $ */ /* $KAME: in4_cksum.c,v 1.10 2001/11/30 10:06:15 itojun Exp $ */ /* $NetBSD: in_cksum.c,v 1.13 1996/10/13 02:03:03 christos Exp $ */ @@ -68,7 +68,6 @@ #include <sys/socket.h> #include <net/route.h> #include <netinet/in.h> -#include <netinet/in_systm.h> #include <netinet/ip.h> #include <netinet/ip_var.h> diff --git a/sys/netinet/in_gif.c b/sys/netinet/in_gif.c index 9e3e181cd6a..5411be6e9e9 100644 --- a/sys/netinet/in_gif.c +++ b/sys/netinet/in_gif.c @@ -1,4 +1,4 @@ -/* $OpenBSD: in_gif.c,v 1.40 2014/04/14 09:06:42 mpi Exp $ */ +/* $OpenBSD: in_gif.c,v 1.41 2014/07/22 11:06:10 mpi Exp $ */ /* $KAME: in_gif.c,v 1.50 2001/01/22 07:27:16 itojun Exp $ */ /* @@ -42,7 +42,6 @@ #include <net/if_gif.h> #include <netinet/in.h> -#include <netinet/in_systm.h> #include <netinet/ip.h> #include <netinet/ip_var.h> #include <netinet/in_gif.h> diff --git a/sys/netinet/in_pcb.c b/sys/netinet/in_pcb.c index 24305d94441..ed3115e2b84 100644 --- a/sys/netinet/in_pcb.c +++ b/sys/netinet/in_pcb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: in_pcb.c,v 1.157 2014/07/12 21:06:34 yasuoka Exp $ */ +/* $OpenBSD: in_pcb.c,v 1.158 2014/07/22 11:06:10 mpi Exp $ */ /* $NetBSD: in_pcb.c,v 1.25 1996/02/13 23:41:53 christos Exp $ */ /* @@ -85,7 +85,6 @@ #include <net/pfvar.h> #include <netinet/in.h> -#include <netinet/in_systm.h> #include <netinet/ip.h> #include <netinet/in_pcb.h> #include <netinet/in_var.h> diff --git a/sys/netinet/in_proto.c b/sys/netinet/in_proto.c index f9bd021eddd..3b08374a621 100644 --- a/sys/netinet/in_proto.c +++ b/sys/netinet/in_proto.c @@ -1,4 +1,4 @@ -/* $OpenBSD: in_proto.c,v 1.60 2013/12/17 02:41:07 matthew Exp $ */ +/* $OpenBSD: in_proto.c,v 1.61 2014/07/22 11:06:10 mpi Exp $ */ /* $NetBSD: in_proto.c,v 1.14 1996/02/18 18:58:32 christos Exp $ */ /* @@ -111,7 +111,6 @@ #endif #include <netinet/in.h> -#include <netinet/in_systm.h> #include <netinet/ip.h> #include <netinet/ip_var.h> #include <netinet/ip_icmp.h> diff --git a/sys/netinet/ip_ah.c b/sys/netinet/ip_ah.c index 296a689eeee..edba2e2aa63 100644 --- a/sys/netinet/ip_ah.c +++ b/sys/netinet/ip_ah.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_ah.c,v 1.110 2014/07/12 18:44:23 tedu Exp $ */ +/* $OpenBSD: ip_ah.c,v 1.111 2014/07/22 11:06:10 mpi Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), * Angelos D. Keromytis (kermit@csd.uch.gr) and @@ -48,7 +48,6 @@ #ifdef INET #include <netinet/in.h> -#include <netinet/in_systm.h> #include <netinet/ip.h> #include <netinet/ip_var.h> #endif /* INET */ diff --git a/sys/netinet/ip_carp.c b/sys/netinet/ip_carp.c index 481fa36f0e6..ad30ceebed6 100644 --- a/sys/netinet/ip_carp.c +++ b/sys/netinet/ip_carp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_carp.c,v 1.232 2014/07/12 18:44:23 tedu Exp $ */ +/* $OpenBSD: ip_carp.c,v 1.233 2014/07/22 11:06:10 mpi Exp $ */ /* * Copyright (c) 2002 Michael Shalayeff. All rights reserved. @@ -61,7 +61,6 @@ #ifdef INET #include <netinet/in.h> -#include <netinet/in_systm.h> #include <netinet/in_var.h> #include <netinet/ip.h> #include <netinet/ip_var.h> diff --git a/sys/netinet/ip_divert.c b/sys/netinet/ip_divert.c index 3c24d143b4e..83ebbf5af0c 100644 --- a/sys/netinet/ip_divert.c +++ b/sys/netinet/ip_divert.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_divert.c,v 1.26 2014/07/12 19:05:45 lteo Exp $ */ +/* $OpenBSD: ip_divert.c,v 1.27 2014/07/22 11:06:10 mpi Exp $ */ /* * Copyright (c) 2009 Michele Marchetto <michele@openbsd.org> @@ -30,7 +30,6 @@ #include <net/pfvar.h> #include <netinet/in.h> -#include <netinet/in_systm.h> #include <netinet/in_var.h> #include <netinet/ip.h> #include <netinet/ip_var.h> diff --git a/sys/netinet/ip_ecn.c b/sys/netinet/ip_ecn.c index 1c08f9514c7..aed51e08e84 100644 --- a/sys/netinet/ip_ecn.c +++ b/sys/netinet/ip_ecn.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_ecn.c,v 1.5 2012/03/15 16:37:11 markus Exp $ */ +/* $OpenBSD: ip_ecn.c,v 1.6 2014/07/22 11:06:10 mpi Exp $ */ /* $KAME: ip_ecn.c,v 1.9 2000/10/01 12:44:48 itojun Exp $ */ /* @@ -41,7 +41,6 @@ #ifdef INET #include <netinet/in.h> -#include <netinet/in_systm.h> #include <netinet/ip.h> #endif diff --git a/sys/netinet/ip_esp.c b/sys/netinet/ip_esp.c index 62c53fffee3..996759aeecd 100644 --- a/sys/netinet/ip_esp.c +++ b/sys/netinet/ip_esp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_esp.c,v 1.125 2014/07/12 18:44:23 tedu Exp $ */ +/* $OpenBSD: ip_esp.c,v 1.126 2014/07/22 11:06:10 mpi Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), * Angelos D. Keromytis (kermit@csd.uch.gr) and @@ -49,7 +49,6 @@ #ifdef INET #include <netinet/in.h> -#include <netinet/in_systm.h> #include <netinet/ip.h> #include <netinet/ip_var.h> #endif /* INET */ diff --git a/sys/netinet/ip_ether.c b/sys/netinet/ip_ether.c index ab2778bca6f..90c9cfb6a7b 100644 --- a/sys/netinet/ip_ether.c +++ b/sys/netinet/ip_ether.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_ether.c,v 1.67 2014/07/14 12:18:30 deraadt Exp $ */ +/* $OpenBSD: ip_ether.c,v 1.68 2014/07/22 11:06:10 mpi Exp $ */ /* * The author of this code is Angelos D. Keromytis (kermit@adk.gr) * @@ -43,7 +43,6 @@ #ifdef INET #include <netinet/in.h> -#include <netinet/in_systm.h> #include <netinet/ip.h> #include <netinet/in_pcb.h> #include <netinet/ip_var.h> diff --git a/sys/netinet/ip_gre.c b/sys/netinet/ip_gre.c index 1c6c464c73b..e627d92b44d 100644 --- a/sys/netinet/ip_gre.c +++ b/sys/netinet/ip_gre.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_gre.c,v 1.49 2014/04/14 09:06:42 mpi Exp $ */ +/* $OpenBSD: ip_gre.c,v 1.50 2014/07/22 11:06:10 mpi Exp $ */ /* $NetBSD: ip_gre.c,v 1.9 1999/10/25 19:18:11 drochner Exp $ */ /* @@ -55,7 +55,6 @@ #ifdef INET #include <netinet/in.h> -#include <netinet/in_systm.h> #include <netinet/ip.h> #include <netinet/ip_var.h> #include <netinet/ip_gre.h> diff --git a/sys/netinet/ip_ipcomp.c b/sys/netinet/ip_ipcomp.c index 021ff99c095..117bc60829a 100644 --- a/sys/netinet/ip_ipcomp.c +++ b/sys/netinet/ip_ipcomp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_ipcomp.c,v 1.35 2014/07/12 18:44:23 tedu Exp $ */ +/* $OpenBSD: ip_ipcomp.c,v 1.36 2014/07/22 11:06:10 mpi Exp $ */ /* * Copyright (c) 2001 Jean-Jacques Bernard-Gundol (jj@wabbitt.org) @@ -41,7 +41,6 @@ #ifdef INET #include <netinet/in.h> -#include <netinet/in_systm.h> #include <netinet/ip.h> #include <netinet/ip_var.h> #endif /* INET */ diff --git a/sys/netinet/ip_ipip.c b/sys/netinet/ip_ipip.c index 9f67b266d5a..a9be55a6bbe 100644 --- a/sys/netinet/ip_ipip.c +++ b/sys/netinet/ip_ipip.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_ipip.c,v 1.52 2014/04/14 09:06:42 mpi Exp $ */ +/* $OpenBSD: ip_ipip.c,v 1.53 2014/07/22 11:06:10 mpi Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), * Angelos D. Keromytis (kermit@csd.uch.gr) and @@ -54,7 +54,6 @@ #include <net/bpf.h> #include <netinet/in.h> -#include <netinet/in_systm.h> #include <netinet/ip.h> #include <netinet/in_pcb.h> #include <netinet/ip_var.h> diff --git a/sys/netinet/ip_ipsp.c b/sys/netinet/ip_ipsp.c index 526d2e617b7..e4a5df8a1ba 100644 --- a/sys/netinet/ip_ipsp.c +++ b/sys/netinet/ip_ipsp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_ipsp.c,v 1.196 2014/07/12 18:44:23 tedu Exp $ */ +/* $OpenBSD: ip_ipsp.c,v 1.197 2014/07/22 11:06:10 mpi Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), * Angelos D. Keromytis (kermit@csd.uch.gr), @@ -61,7 +61,6 @@ #ifdef INET #include <netinet/in.h> -#include <netinet/in_systm.h> #include <netinet/ip.h> #include <netinet/in_pcb.h> #include <netinet/ip_var.h> diff --git a/sys/netinet/ip_mroute.c b/sys/netinet/ip_mroute.c index f2583c987d6..37bd655ee16 100644 --- a/sys/netinet/ip_mroute.c +++ b/sys/netinet/ip_mroute.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_mroute.c,v 1.67 2014/07/12 18:44:23 tedu Exp $ */ +/* $OpenBSD: ip_mroute.c,v 1.68 2014/07/22 11:06:10 mpi Exp $ */ /* $NetBSD: ip_mroute.c,v 1.85 2004/04/26 01:31:57 matt Exp $ */ /* @@ -79,7 +79,6 @@ #include <net/raw_cb.h> #include <netinet/in.h> -#include <netinet/in_systm.h> #include <netinet/ip.h> #include <netinet/ip_var.h> #include <netinet/in_pcb.h> diff --git a/sys/netinet/ip_output.c b/sys/netinet/ip_output.c index eb7db875269..cfe4ef4ca15 100644 --- a/sys/netinet/ip_output.c +++ b/sys/netinet/ip_output.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_output.c,v 1.265 2014/07/12 18:44:23 tedu Exp $ */ +/* $OpenBSD: ip_output.c,v 1.266 2014/07/22 11:06:10 mpi Exp $ */ /* $NetBSD: ip_output.c,v 1.28 1996/02/13 23:43:07 christos Exp $ */ /* @@ -48,7 +48,6 @@ #include <net/route.h> #include <netinet/in.h> -#include <netinet/in_systm.h> #include <netinet/ip.h> #include <netinet/in_pcb.h> #include <netinet/in_var.h> diff --git a/sys/netinet/ip_spd.c b/sys/netinet/ip_spd.c index 49621775410..dddb6dcead3 100644 --- a/sys/netinet/ip_spd.c +++ b/sys/netinet/ip_spd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_spd.c,v 1.71 2014/04/14 09:06:42 mpi Exp $ */ +/* $OpenBSD: ip_spd.c,v 1.72 2014/07/22 11:06:10 mpi Exp $ */ /* * The author of this code is Angelos D. Keromytis (angelos@cis.upenn.edu) * @@ -36,7 +36,6 @@ #ifdef INET #include <netinet/in.h> -#include <netinet/in_systm.h> #include <netinet/ip.h> #include <netinet/ip_var.h> #include <netinet/in_pcb.h> diff --git a/sys/netinet/ipsec_input.c b/sys/netinet/ipsec_input.c index 6b1eb7ee1d7..8bde5928e07 100644 --- a/sys/netinet/ipsec_input.c +++ b/sys/netinet/ipsec_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ipsec_input.c,v 1.121 2014/07/09 09:30:49 henning Exp $ */ +/* $OpenBSD: ipsec_input.c,v 1.122 2014/07/22 11:06:10 mpi Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), * Angelos D. Keromytis (kermit@csd.uch.gr) and @@ -56,7 +56,6 @@ #endif #include <netinet/in.h> -#include <netinet/in_systm.h> #include <netinet/ip.h> #include <netinet/ip_var.h> #include <netinet/ip_icmp.h> diff --git a/sys/netinet/ipsec_output.c b/sys/netinet/ipsec_output.c index ca1c1bfa2c6..adcab7d1974 100644 --- a/sys/netinet/ipsec_output.c +++ b/sys/netinet/ipsec_output.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ipsec_output.c,v 1.52 2014/04/21 12:22:26 henning Exp $ */ +/* $OpenBSD: ipsec_output.c,v 1.53 2014/07/22 11:06:10 mpi Exp $ */ /* * The author of this code is Angelos D. Keromytis (angelos@cis.upenn.edu) * @@ -38,7 +38,6 @@ #ifdef INET #include <netinet/in.h> -#include <netinet/in_systm.h> #include <netinet/ip.h> #include <netinet/in_pcb.h> #include <netinet/ip_var.h> diff --git a/sys/netinet/raw_ip.c b/sys/netinet/raw_ip.c index c2ae755f185..60cd29e2bbd 100644 --- a/sys/netinet/raw_ip.c +++ b/sys/netinet/raw_ip.c @@ -1,4 +1,4 @@ -/* $OpenBSD: raw_ip.c,v 1.73 2014/06/02 10:41:40 mpi Exp $ */ +/* $OpenBSD: raw_ip.c,v 1.74 2014/07/22 11:06:10 mpi Exp $ */ /* $NetBSD: raw_ip.c,v 1.25 1996/02/18 18:58:33 christos Exp $ */ /* @@ -80,7 +80,6 @@ #include <net/pfvar.h> #include <netinet/in.h> -#include <netinet/in_systm.h> #include <netinet/ip.h> #include <netinet/ip_mroute.h> #include <netinet/ip_var.h> diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index ade7bde7e14..cf74f095c08 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_input.c,v 1.277 2014/07/11 13:15:34 bluhm Exp $ */ +/* $OpenBSD: tcp_input.c,v 1.278 2014/07/22 11:06:10 mpi Exp $ */ /* $NetBSD: tcp_input.c,v 1.23 1996/02/13 23:43:44 christos Exp $ */ /* @@ -86,7 +86,6 @@ #include <net/route.h> #include <netinet/in.h> -#include <netinet/in_systm.h> #include <netinet/ip.h> #include <netinet/in_pcb.h> #include <netinet/ip_var.h> diff --git a/sys/netinet/tcp_output.c b/sys/netinet/tcp_output.c index 21eb847ffdb..1d38d064c60 100644 --- a/sys/netinet/tcp_output.c +++ b/sys/netinet/tcp_output.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_output.c,v 1.106 2014/04/21 12:22:26 henning Exp $ */ +/* $OpenBSD: tcp_output.c,v 1.107 2014/07/22 11:06:10 mpi Exp $ */ /* $NetBSD: tcp_output.c,v 1.16 1997/06/03 16:17:09 kml Exp $ */ /* @@ -82,7 +82,6 @@ #include <net/if.h> #include <netinet/in.h> -#include <netinet/in_systm.h> #include <netinet/ip.h> #include <netinet/in_pcb.h> #include <netinet/ip_var.h> diff --git a/sys/netinet/tcp_subr.c b/sys/netinet/tcp_subr.c index 72ea22b354c..312e42bb42b 100644 --- a/sys/netinet/tcp_subr.c +++ b/sys/netinet/tcp_subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_subr.c,v 1.131 2014/07/12 21:06:34 yasuoka Exp $ */ +/* $OpenBSD: tcp_subr.c,v 1.132 2014/07/22 11:06:10 mpi Exp $ */ /* $NetBSD: tcp_subr.c,v 1.22 1996/02/13 23:44:00 christos Exp $ */ /* @@ -82,7 +82,6 @@ #include <net/if.h> #include <netinet/in.h> -#include <netinet/in_systm.h> #include <netinet/ip.h> #include <netinet/in_pcb.h> #include <netinet/ip_var.h> diff --git a/sys/netinet/tcp_timer.c b/sys/netinet/tcp_timer.c index 94841434bc0..2a711011e97 100644 --- a/sys/netinet/tcp_timer.c +++ b/sys/netinet/tcp_timer.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_timer.c,v 1.47 2013/08/08 14:29:29 mpi Exp $ */ +/* $OpenBSD: tcp_timer.c,v 1.48 2014/07/22 11:06:10 mpi Exp $ */ /* $NetBSD: tcp_timer.c,v 1.14 1996/02/13 23:44:09 christos Exp $ */ /* @@ -44,7 +44,6 @@ #include <net/route.h> #include <netinet/in.h> -#include <netinet/in_systm.h> #include <netinet/ip.h> #include <netinet/in_pcb.h> #include <netinet/ip_var.h> diff --git a/sys/netinet/tcp_usrreq.c b/sys/netinet/tcp_usrreq.c index e674a51f88a..2cb2c8a7c89 100644 --- a/sys/netinet/tcp_usrreq.c +++ b/sys/netinet/tcp_usrreq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_usrreq.c,v 1.118 2014/04/06 16:49:40 chrisz Exp $ */ +/* $OpenBSD: tcp_usrreq.c,v 1.119 2014/07/22 11:06:10 mpi Exp $ */ /* $NetBSD: tcp_usrreq.c,v 1.20 1996/02/13 23:44:16 christos Exp $ */ /* @@ -87,7 +87,6 @@ #include <net/route.h> #include <netinet/in.h> -#include <netinet/in_systm.h> #include <netinet/in_var.h> #include <netinet/ip.h> #include <netinet/in_pcb.h> diff --git a/sys/netinet/udp_usrreq.c b/sys/netinet/udp_usrreq.c index 162f7be93f1..90914a5725b 100644 --- a/sys/netinet/udp_usrreq.c +++ b/sys/netinet/udp_usrreq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: udp_usrreq.c,v 1.188 2014/07/12 21:06:34 yasuoka Exp $ */ +/* $OpenBSD: udp_usrreq.c,v 1.189 2014/07/22 11:06:10 mpi Exp $ */ /* $NetBSD: udp_usrreq.c,v 1.28 1996/03/16 23:54:03 christos Exp $ */ /* @@ -82,7 +82,6 @@ #include <net/route.h> #include <netinet/in.h> -#include <netinet/in_systm.h> #include <netinet/in_var.h> #include <netinet/ip.h> #include <netinet/in_pcb.h> |