From 965f603238a92b6ab8cd8a0592e0fb65c096b3e1 Mon Sep 17 00:00:00 2001 From: Stefano Brivio Date: Sat, 26 Mar 2022 00:05:31 +0100 Subject: treewide: Add include guards ...at the moment, just for consistency with packet.h, icmp.h, tcp.h and udp.h. Signed-off-by: Stefano Brivio --- arp.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'arp.h') diff --git a/arp.h b/arp.h index 6ef3736..34b15db 100644 --- a/arp.h +++ b/arp.h @@ -3,6 +3,9 @@ * Author: Stefano Brivio */ +#ifndef ARP_H +#define ARP_H + /** * struct arpmsg - 802.2 ARP IPv4 payload * @sha: Sender hardware address @@ -18,3 +21,5 @@ struct arpmsg { } __attribute__((__packed__)); int arp(struct ctx *c, struct pool *p); + +#endif /* ARP_H */ -- cgit v1.2.3