X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=src%2Flist.h;fp=src%2Flist.h;h=c99082844916e210770c7ede8ba7552e93389b19;hb=9415f4b08fb2ca9ae933edd0bf8b096db195ebae;hp=d06415216367a9c53683c70473018b46ba565c46;hpb=a230bea6a2fc33876ff46478449e466a6407c09d;p=meshlink diff --git a/src/list.h b/src/list.h index d0641521..c9908284 100644 --- a/src/list.h +++ b/src/list.h @@ -17,8 +17,8 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#ifndef __TINC_LIST_H__ -#define __TINC_LIST_H__ +#ifndef __MESHLINK_LIST_H__ +#define __MESHLINK_LIST_H__ typedef struct list_node_t { struct list_node_t *prev; @@ -80,4 +80,4 @@ extern void list_foreach_node(list_t *, list_action_node_t); #define list_each(type, item, list) (type *item = (type *)1; item; item = NULL) for(list_node_t *node = (list)->head, *next; item = node ? node->data : NULL, next = node ? node->next : NULL, node; node = next) -#endif /* __TINC_LIST_H__ */ +#endif /* __MESHLINK_LIST_H__ */