diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2001-06-09 07:03:46 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2001-06-09 07:03:46 +0000 |
commit | 29cf16ac90acaf062d15901509e3a67ca4ef738e (patch) | |
tree | ed4d67d6d710a9f74690b2ce796fdcc9b072d559 /sys/netinet/ip_ether.h | |
parent | 704a4b23790dbd9ab4869662980b908dfba2a41f (diff) |
Inclusion protection.
Diffstat (limited to 'sys/netinet/ip_ether.h')
-rw-r--r-- | sys/netinet/ip_ether.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sys/netinet/ip_ether.h b/sys/netinet/ip_ether.h index 322ba90c956..e32ccd5de84 100644 --- a/sys/netinet/ip_ether.h +++ b/sys/netinet/ip_ether.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_ether.h,v 1.9 2001/02/03 21:38:39 jason Exp $ */ +/* $OpenBSD: ip_ether.h,v 1.10 2001/06/09 07:03:42 angelos Exp $ */ /* * The author of this code is Angelos D. Keromytis (angelos@adk.gr) @@ -23,6 +23,9 @@ * PURPOSE. */ +#ifndef _NETINET_IP_ETHER_H_ +#define _NETINET_IP_ETHER_H_ + /* * Ethernet-inside-IP processing. */ @@ -64,4 +67,5 @@ int etherip_sysctl __P((int *, u_int, void *, size_t *, void *, size_t)); extern int etherip_allow; extern struct etheripstat etheripstat; -#endif +#endif /* _KERNEL */ +#endif /* _NETINET_IP_ETHER_H_ */ |