]> the.earth.li Git - onak.git/blobdiff - ll.c
cscvs to tla changeset 124
[onak.git] / ll.c
diff --git a/ll.c b/ll.c
index 5936bf60d5665f444237561d6b612205a22c7dc0..b823d23813c902eca0802f08c5ac568464b6d2de 100644 (file)
--- a/ll.c
+++ b/ll.c
@@ -4,6 +4,8 @@
  * Jonathan McDowell <noodles@earth.li>
  *
  * Copyright 2000-2002 Project Purple
+ *
+ * $Id: ll.c,v 1.5 2003/10/04 10:21:41 noodles Exp $
  */
 
 #include <assert.h>
@@ -91,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;
 
@@ -105,5 +106,5 @@ struct ll *llfree(struct ll *curll,
                free(curll);
                curll = nextll;
        }
-       return NULL;
+       return;
 }