diff -r 59f147baea31 -r 22644e2572bc ucx/list.c --- a/ucx/list.c Sat Feb 18 15:50:43 2012 +0100 +++ b/ucx/list.c Sat Feb 18 18:36:30 2012 +0100 @@ -108,16 +108,6 @@ return s; } -void ucx_list_foreach(UcxList *l, ucx_callback fnc, void* data) { - UcxList *e = l; - UcxList *n; - while (e != NULL) { - n = e->next; - fnc(e, data); - e = n; - } -} - /* list specific functions */ UcxList *ucx_list_remove(UcxList *l, UcxList *e) { if (e == l) {