diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2001-06-24 05:08:12 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2001-06-24 05:08:12 +0000 |
commit | ff4b98b29001a62796604cd66a488637944cbff3 (patch) | |
tree | 1fb8ac9d8aead130e566a1fa8e1e2deb79973b4c /sys/arch/powerpc | |
parent | 30dc33ee35e7651292dd08fd48d48da37a113cb6 (diff) |
include header files for proper defines.
Diffstat (limited to 'sys/arch/powerpc')
-rw-r--r-- | sys/arch/powerpc/powerpc/in_cksum.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/powerpc/powerpc/in_cksum.c b/sys/arch/powerpc/powerpc/in_cksum.c index 9783c32934a..e4905ac02e2 100644 --- a/sys/arch/powerpc/powerpc/in_cksum.c +++ b/sys/arch/powerpc/powerpc/in_cksum.c @@ -1,4 +1,4 @@ -/* $OpenBSD: in_cksum.c,v 1.2 1996/12/28 06:22:02 rahnds Exp $ */ +/* $OpenBSD: in_cksum.c,v 1.3 2001/06/24 05:08:11 drahn Exp $ */ /* $NetBSD: in_cksum.c,v 1.1 1996/09/30 16:34:47 ws Exp $ */ /* @@ -32,7 +32,9 @@ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include <sys/param.h> +#include <sys/systm.h> #include <sys/mbuf.h> +#include <netinet/in.h> /* * First cut for in_cksum. |