diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2001-06-09 06:16:40 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2001-06-09 06:16:40 +0000 |
commit | 13c65eac1cefee96451c2c25b660f73de84834ff (patch) | |
tree | 0fbacf487c8cd2dee726f32dbece3df23d2f5751 /sys/net/if_arp.h | |
parent | 470facdd7d89074650914f5a3a8ada963b1c071d (diff) |
By popular demand, protect from multiple inclusion, and fix to use the
same naming style.
Diffstat (limited to 'sys/net/if_arp.h')
-rw-r--r-- | sys/net/if_arp.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/net/if_arp.h b/sys/net/if_arp.h index d123a1a797d..80247f02cd7 100644 --- a/sys/net/if_arp.h +++ b/sys/net/if_arp.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_arp.h,v 1.3 1999/07/30 22:22:19 fgsch Exp $ */ +/* $OpenBSD: if_arp.h,v 1.4 2001/06/09 06:16:37 angelos Exp $ */ /* $NetBSD: if_arp.h,v 1.8 1995/03/08 02:56:52 cgd Exp $ */ /* @@ -36,6 +36,8 @@ * @(#)if_arp.h 8.1 (Berkeley) 6/10/93 */ +#ifndef _NET_IF_ARP_H_ +#define _NET_IF_ARP_H_ /* * Address Resolution Protocol. * @@ -87,3 +89,4 @@ struct arpreq { #define ATF_PERM 0x04 /* permanent entry */ #define ATF_PUBL 0x08 /* publish entry (respond for other host) */ #define ATF_USETRAILERS 0x10 /* has requested trailers */ +#endif /* _NET_IF_ARP_H_ */ |