X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;ds=inline;f=include%2Flibfirm%2Fadt%2Fplist.h;h=ba355795e48bfd4d9dab6b7cba6e2ae4973fd592;hb=c021732d2f0c04113e6afd153a7a9be38e40ca6f;hp=623a07530136f4548217336169ec43c814a827e9;hpb=6f2b3c2901153e4df55ccea111c25d14b0917065;p=libfirm diff --git a/include/libfirm/adt/plist.h b/include/libfirm/adt/plist.h index 623a07530..ba355795e 100644 --- a/include/libfirm/adt/plist.h +++ b/include/libfirm/adt/plist.h @@ -19,9 +19,9 @@ /** * @file - * @author Kimon Hoffmann - * @date 14.07.2005 - * @cvs-id $Id$ + * @author Kimon Hoffmann + * @date 14.07.2005 + * @version $Id$ * @brief Simple, non circular, double linked pointer list. * Created because the properties of the standard circular list were * not very well suited for the interference graph implementation. @@ -37,6 +37,8 @@ #include #include "obst.h" +#include "../begin.h" + typedef struct _plist_element plist_element_t; typedef struct _plist plist_t; @@ -243,4 +245,6 @@ void plist_clear(plist_t *list); #define foreach_plist(list, el) \ for (el = plist_first(list); el; el = plist_element_get_next(el)) -#endif /*_PLIST_H_*/ +#include "../end.h" + +#endif