Remove CVS Id tags.
[onak.git] / ll.c
diff --git a/ll.c b/ll.c
index debf52b278759d9702f6cad1b729a6931f8bac08..4d1ea4a71f63d054b217bb791be00bdc3f3efc95 100644 (file)
--- a/ll.c
+++ b/ll.c
@@ -4,8 +4,6 @@
  * Jonathan McDowell <noodles@earth.li>
  *
  * Copyright 2000-2002 Project Purple
- *
- * $Id: ll.c,v 1.4 2003/06/04 20:57:10 noodles Exp $
  */
 
 #include <assert.h>
@@ -93,8 +91,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 +104,5 @@ struct ll *llfree(struct ll *curll,
                free(curll);
                curll = nextll;
        }
-       return NULL;
+       return;
 }