* objectfree then it's called for each element to free them, if it's NULL
* just the list is freed.
*/
-struct ll *llfree(struct ll *curll,
- void (*objectfree) (void *object))
+void llfree(struct ll *curll, void (*objectfree) (void *object))
{
struct ll *nextll;
free(curll);
curll = nextll;
}
- return NULL;
+ return;
}