diff --git a/src/pulsecore/llist.h b/src/pulsecore/llist.h index 77a1749f2..58b51c680 100644 --- a/src/pulsecore/llist.h +++ b/src/pulsecore/llist.h @@ -104,4 +104,7 @@ } \ } while (0) +#define PA_LLIST_FOREACH(i,head) \ + for (i = (head); i; i = i->next) + #endif