diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2014-08-23 11:38:57 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2014-08-23 11:38:57 +0000 |
commit | d5d7283324c5f967cbe039fa57dd229384ba4a13 (patch) | |
tree | 70a6ede579e728540a45a997f92cbda9c048cf89 /sys/arch/sparc64 | |
parent | 3ed0a36eb8f686df8a4397751896d045ee932b6b (diff) |
oddly now needs sys/socket.h, because someone removed struct socket fwd
decl definition from somewhere in .h. This appears to be the only fallout
in the kernel.
Diffstat (limited to 'sys/arch/sparc64')
-rw-r--r-- | sys/arch/sparc64/sparc64/in4_cksum.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/sparc64/sparc64/in4_cksum.c b/sys/arch/sparc64/sparc64/in4_cksum.c index 00227094501..0be1f477a9d 100644 --- a/sys/arch/sparc64/sparc64/in4_cksum.c +++ b/sys/arch/sparc64/sparc64/in4_cksum.c @@ -1,4 +1,4 @@ -/* $OpenBSD: in4_cksum.c,v 1.5 2014/08/21 14:24:08 mpi Exp $ */ +/* $OpenBSD: in4_cksum.c,v 1.6 2014/08/23 11:38:56 deraadt Exp $ */ /* $NetBSD: in4_cksum.c,v 1.5 2003/10/13 14:22:20 agc Exp $ */ /* @@ -82,6 +82,7 @@ #include <sys/param.h> #include <sys/systm.h> #include <sys/mbuf.h> +#include <sys/socket.h> #include <netinet/in.h> #include <netinet/ip.h> |