Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.openwrt.org/project/libubox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2012-06-10 19:11:36 +0400
committerFelix Fietkau <nbd@openwrt.org>2012-06-10 19:11:36 +0400
commiteedf91d212caea67920848e1c7e9355173359986 (patch)
tree9db9e5df4f57bc506def50151a50339950e6ff3a /vlist.h
parent5cfe2696f0101dc3b304dbffeefd6723b7ec8453 (diff)
vlist.h: protect against multiple inclusions
Diffstat (limited to 'vlist.h')
-rw-r--r--vlist.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/vlist.h b/vlist.h
index 19c1c20..1dfc92c 100644
--- a/vlist.h
+++ b/vlist.h
@@ -14,6 +14,9 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#ifndef __LIBUBOX_VLIST_H
+#define __LIBUBOX_VLIST_H
+
#include "avl.h"
struct vlist_tree;
@@ -56,3 +59,4 @@ void vlist_flush_all(struct vlist_tree *tree);
#define vlist_for_each_element(tree, element, node_member) \
avl_for_each_element(&(tree)->avl, element, node_member.avl)
+#endif