X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=src%2Flist.h;h=82f08e5ff47e9e192777edfebc9358a590dcd119;hp=fec02bbb514053751f8b6e4cb60f85f8bce9bac6;hb=5ed5a1ef610700e463abd0c07aed377cce5eef47;hpb=a759ef64fc68d3aa8e61a8e84dd2ad548a94e21a diff --git a/src/list.h b/src/list.h index fec02bbb..82f08e5f 100644 --- a/src/list.h +++ b/src/list.h @@ -8,20 +8,6 @@ #include -/** - * container_of - cast a member of a structure out to the containing structure - * @ptr: the pointer to the member. - * @type: the type of the container struct this is embedded in. - * @member: the name of the member within the struct. - * - */ -#ifndef container_of -#define container_of(ptr, type, member) ({ \ - const typeof( ((type *)0)->member ) *__mptr = (ptr); \ - (type *)( (char *)__mptr - offsetof(type,member) );}) -#endif - - struct list_head { struct list_head *next, *prev; };