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

This commit is contained in:
dholland 2012-09-30 05:13:12 +00:00
parent 7bb3c82fdb
commit 85c764df3c
1 changed files with 4 additions and 1 deletions

View File

@ -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;