X-Git-Url: https://git.sommitrealweird.co.uk/onak.git/blobdiff_plain/0f4971d043c38bae1bfb95201622a1405110f899..f1e930585a5eb8ef184f5a0ad1e85759e01e60d0:/ll.c diff --git a/ll.c b/ll.c index debf52b..b823d23 100644 --- a/ll.c +++ b/ll.c @@ -5,7 +5,7 @@ * * Copyright 2000-2002 Project Purple * - * $Id: ll.c,v 1.4 2003/06/04 20:57:10 noodles Exp $ + * $Id: ll.c,v 1.5 2003/10/04 10:21:41 noodles Exp $ */ #include @@ -93,8 +93,7 @@ unsigned long llsize(struct ll *curll) * 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; @@ -107,5 +106,5 @@ struct ll *llfree(struct ll *curll, free(curll); curll = nextll; } - return NULL; + return; }