X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=list.h;h=2e0a7ad7eae671a3b0d20706dc9d741f549ab4eb;hb=0ab8db8943acc6b9ea778735563bfad2a79e8ddd;hp=cedbafaae022de9267bcfd02296410a0b42c3465;hpb=ebac4655dd3624f3296ff83be48e0cdc02852f18;p=fio.git diff --git a/list.h b/list.h index cedbafaa..2e0a7ad7 100644 --- a/list.h +++ b/list.h @@ -28,9 +28,6 @@ struct list_head { #define LIST_HEAD_INIT(name) { &(name), &(name) } -#define LIST_HEAD(name) \ - struct list_head name = LIST_HEAD_INIT(name) - #define INIT_LIST_HEAD(ptr) do { \ (ptr)->next = (ptr); (ptr)->prev = (ptr); \ } while (0)