Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/netinet Requires <sys/queue.h> for LIST_ENTRY and netine...



details:   https://anonhg.NetBSD.org/src/rev/0705245266fc
branches:  trunk
changeset: 781777:0705245266fc
user:      dholland <dholland%NetBSD.org@localhost>
date:      Sun Sep 30 05:13:12 2012 +0000

description:
Requires <sys/queue.h> for LIST_ENTRY and netinet/in.h for struct in_addr.

diffstat:

 sys/netinet/if_inarp.h |  5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diffs (19 lines):

diff -r b09c328b6ef8 -r 0705245266fc sys/netinet/if_inarp.h
--- a/sys/netinet/if_inarp.h    Sun Sep 30 05:08:08 2012 +0000
+++ b/sys/netinet/if_inarp.h    Sun Sep 30 05:13:12 2012 +0000
@@ -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;



Home | Main Index | Thread Index | Old Index