summaryrefslogtreecommitdiffstats
path: root/include/libnftables/expr.h
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2013-11-24 20:43:49 +0100
committerPablo Neira Ayuso <pablo@netfilter.org>2013-11-24 20:52:36 +0100
commit16f85ed04049501bf5ac932a5ae44627d76ef747 (patch)
tree00232046cfc9ef5ffe22d2fc4203e62978671068 /include/libnftables/expr.h
parent47d11ab2153447d7291a5c325cf0cf7bc124b05d (diff)
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 <pablo@netfilter.org>
Diffstat (limited to 'include/libnftables/expr.h')
-rw-r--r--include/libnftables/expr.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/libnftables/expr.h b/include/libnftables/expr.h
index 81e224c..54de186 100644
--- a/include/libnftables/expr.h
+++ b/include/libnftables/expr.h
@@ -1,5 +1,5 @@
-#ifndef _RULE_EXPR_H_
-#define _RULE_EXPR_H_
+#ifndef _LIBNFTABLES_RULE_EXPR_H_
+#define _LIBNFTABLES_RULE_EXPR_H_
#include <stdint.h>
#include <stdbool.h>
@@ -147,4 +147,4 @@ enum {
} /* extern "C" */
#endif
-#endif
+#endif /* _LIBNFTABLES_RULE_EXPR_H_ */