X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=list.h;h=80f36a1ba58ee0032fb3fbd99c4054a03c917cbd;hp=db2e84908130676e22f346eedea116254786146d;hb=c36f5e92c572c8eaf77c227bce164b9e98a74a3e;hpb=f74525557a0f63090de04fcb2ad401db0783f9a3;ds=sidebyside 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 */