From: Felix Fietkau Date: Sun, 10 Jun 2012 15:11:36 +0000 (+0200) Subject: vlist.h: protect against multiple inclusions X-Git-Url: http://git.openwrt.org/?p=project%2Flibubox.git;a=commitdiff_plain;h=eedf91d212caea67920848e1c7e9355173359986 vlist.h: protect against multiple inclusions --- 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