X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=list.h;h=80f36a1ba58ee0032fb3fbd99c4054a03c917cbd;hp=db2e84908130676e22f346eedea116254786146d;hb=749779fab22f802e41472a31db5a84b9b6314996;hpb=7cd6e84f08240d3604ddb36ecd3c7b1ec6990446 diff --git a/list.h b/list.h index db2e8490..80f36a1b 100644 --- a/list.h +++ b/list.h @@ -34,7 +34,7 @@ struct list_head { }; /** Define an initialized list head. */ -#define LIST_HEAD(name) struct list_head name = { &(name), &(name) } +#define INITIALIZED_LIST_HEAD(name) struct list_head name = { &(name), &(name) } /** must be called before using any other list functions */