From 16f85ed04049501bf5ac932a5ae44627d76ef747 Mon Sep 17 00:00:00 2001 From: Pablo Neira Ayuso Date: Sun, 24 Nov 2013 20:43:49 +0100 Subject: include: fix possible clash in ifdef namespace Use _LIBNFTABLES_ prefix to avoid possible clash with headers that are defined in other libraries that may be used by third party applications. Signed-off-by: Pablo Neira Ayuso --- include/libnftables/set.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/libnftables/set.h') diff --git a/include/libnftables/set.h b/include/libnftables/set.h index d378049..d91bd42 100644 --- a/include/libnftables/set.h +++ b/include/libnftables/set.h @@ -1,5 +1,5 @@ -#ifndef _NFT_SET_H_ -#define _NFT_SET_H_ +#ifndef _LIBNFTABLES_SET_H_ +#define _LIBNFTABLES_SET_H_ #include #include @@ -110,4 +110,4 @@ struct nft_set_elem *nft_set_elems_iter_cur(struct nft_set_elems_iter *iter); struct nft_set_elem *nft_set_elems_iter_next(struct nft_set_elems_iter *iter); void nft_set_elems_iter_destroy(struct nft_set_elems_iter *iter); -#endif +#endif /* _LIBNFTABLES_SET_H_ */ -- cgit v1.2.3