Module Name: src
Committed By: dholland
Date: Sun Sep 30 05:13:12 UTC 2012
Modified Files:
src/sys/netinet: if_inarp.h
Log Message:
Requires <sys/queue.h> for LIST_ENTRY and netinet/in.h for struct in_addr.
To generate a diff of this commit:
cvs rdiff -u -r1.43 -r1.44 src/sys/netinet/if_inarp.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/netinet/if_inarp.h
diff -u src/sys/netinet/if_inarp.h:1.43 src/sys/netinet/if_inarp.h:1.44
--- src/sys/netinet/if_inarp.h:1.43 Fri Nov 11 15:09:33 2011
+++ src/sys/netinet/if_inarp.h Sun Sep 30 05:13:12 2012
@@ -1,4 +1,4 @@
-/* $NetBSD: if_inarp.h,v 1.43 2011/11/11 15:09:33 gdt Exp $ */
+/* $NetBSD: if_inarp.h,v 1.44 2012/09/30 05:13:12 dholland Exp $ */
/*
* Copyright (c) 1982, 1986, 1993
@@ -34,6 +34,9 @@
#ifndef _NETINET_IF_INARP_H_
#define _NETINET_IF_INARP_H_
+#include <sys/queue.h> /* for LIST_ENTRY */
+#include <netinet/in.h> /* for struct in_addr */
+
struct llinfo_arp {
LIST_ENTRY(llinfo_arp) la_list;
struct rtentry *la_rt;