From 5a10c82ea5020a1b54cd1719fe5b420008050d82 Mon Sep 17 00:00:00 2001 From: c9s Date: Thu, 22 May 2014 22:21:29 +0800 Subject: [PATCH] R3_NODE_H as the include guard --- include/r3.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/include/r3.h b/include/r3.h index e4583f3..959aff6 100644 --- a/include/r3.h +++ b/include/r3.h @@ -4,9 +4,8 @@ * * Distributed under terms of the MIT license. */ - -#ifndef NODE_H -#define NODE_H +#ifndef R3_NODE_H +#define R3_NODE_H #include #include @@ -172,4 +171,4 @@ route * r3_tree_match_route(const node *n, match_entry * entry); #define METHOD_PUT 2<<1 #define METHOD_DELETE 2<<1 -#endif /* !NODE_H */ +#endif /* !R3_NODE_H */