X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=include%2Flibfirm%2Fadt%2Flist.h;h=1cd8ea4273d871dc4cbb00e463933c856479699f;hb=072e8c0faa8a546eb9a10a9939594c898868c776;hp=16d3cd975e126a874f29c6b24546e50cd8011252;hpb=12ad4306b9e51ff630e24a01f363fd141368c33c;p=libfirm diff --git a/include/libfirm/adt/list.h b/include/libfirm/adt/list.h index 16d3cd975..1cd8ea427 100644 --- a/include/libfirm/adt/list.h +++ b/include/libfirm/adt/list.h @@ -1,4 +1,3 @@ - /** * @file * @brief Doubly linked lists. @@ -17,6 +16,8 @@ #include +#include "../begin.h" + typedef struct list_head list_head; struct list_head { struct list_head *next, *prev; @@ -278,5 +279,6 @@ static inline void list_splice_init(struct list_head *list, &pos->member != (head); \ pos = n, n = list_entry(n->member.next, type, member)) +#include "../end.h" #endif