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 --- pasta.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'pasta.h') diff --git a/pasta.h b/pasta.h index 235bfb9..8c80006 100644 --- a/pasta.h +++ b/pasta.h @@ -3,8 +3,13 @@ * Author: Stefano Brivio */ +#ifndef PASTA_H +#define PASTA_H + void pasta_start_ns(struct ctx *c); void pasta_ns_conf(struct ctx *c); void pasta_child_handler(int signal); int pasta_netns_quit_init(struct ctx *c); void pasta_netns_quit_handler(struct ctx *c, int inotify_fd); + +#endif /* PASTA_H */ -- cgit v1.2.3